I have a custom class that comes from SplitContainer:
namespace Builder.Components
{
public partial class ProjectSidebar : SplitContainer
{
public ProjectSidebar()
{
InitializeComponent();
}
}
}
Now, when I right-click and select View Designer, I would like to see the SplitContainer and edit it, for example, with the default controls (drop the panel in it, etc.). All I see is a message to add controls and go to code view.
How to do it?
source
share