New to Visual Studio 2010, but have been doing Windows development using other platforms for over 10 years. I've done the following in other platforms such as Visual FoxPro, but it doesn't seem to work in VS...
I created a User Control consisting of a panel that contains a few labels and a couple of buttons. When I make a new form (WinForm) and drop this User Control onto the form, I cannot add additional controls to the panel. The User Control appears in the document outline as a single item (purple gear icon) without access to the panel or the controls contained in the panel.
Is this an inappropriate use of a User Control? In this application, I will have many panels with the same buttons and labels in them along with unique combinations of other controls. It seemed natural to make a User Control that provided the panel and contained controls that are common, then just drop in the controls that are unique to the various instances of the panel in the designer. If I have to build all of the panels in the designer from the base controls, I will, but I was hoping to use what seemed to be an obvious OOP process.