mooman_fl
Centurion
Right now I am working on a DLL that consist of several UserControls. At the moment they all show in the toolbox at design time. One of the controls however I want to be internal only. (ie... only usuable from within another control and not sepearately.)
To clarify this... I have a control (ToolScroll) that will be able to add the second control (ToolPanel) to itself dynamically at design time (via designer) or runtime (via exposed methods). However I don't want the Toolpanel available in the Toolbox. I only want this control to be availble second-hand through the Toolscroll control.
Anyideas? I tried just declaring the ToolPanel class as Private but was told that this could only be declared inside another type.
To clarify this... I have a control (ToolScroll) that will be able to add the second control (ToolPanel) to itself dynamically at design time (via designer) or runtime (via exposed methods). However I don't want the Toolpanel available in the Toolbox. I only want this control to be availble second-hand through the Toolscroll control.
Anyideas? I tried just declaring the ToolPanel class as Private but was told that this could only be declared inside another type.