I have developed a control in C#. Among other things this control can popup other controls at runtime. When you include the assembly in Visual Studio, the control that I c
Add the [ToolboxItem(false)] attribute to the classes that you don't want to show up in the toolbox.
If you declare a UserControl as "internal" instead of "public", it will not show up in the toolbox when you reference the Assembly in another project.
Update: or maybe that doesn't work at all. I can't get my simple test controls to work right when I try to host one in another. Let me know if "internal" works.