I'm not sure what to call this. I've made a C# program that contains GUI controls/components for the Visual Studio Toolbox. Once you add the *.CS source it automatically adds the controls into the toolbox:
However once I made this into a DLL, I then tried to:
- Add a Reference to the DLL
- Add it as an existing item
- Right clicking on toolbox -> Choose Items
None of these options automatically display my custom components. I do not want to use a User Control form, so how can I make a *.DLL instead of a *.CS file to show components in the toolbox?
EDIT: You need to make it public :) Thanks 'newb'.