c# - Custom Control and Application in Same Project -
I want to create a custom control in C # that I will use in my application many times, but in any way Other applications will not use I've seen many websites that tell how to create custom controls and add it to the Visual Studio Toolbox. They give you instructions for creating a project with custom controls that are compiled for DLL, then create a new project for the application and add references to that DLL in the toolbox. However, I have my application to be the same executable, which is not dependent on any DLL. Is there a way to put custom controls and applications in a project, and still see the custom controls in Visual Studio Toolbox? Or, if it is not possible to add control to the device box, is there another way to see the app's designer in control?
Comments
Post a Comment