Warning: I'm new to creating a GUI in C # (from a long history in Java with Swing and SWT.)
Using VS2008. When I create a new class and extend System.Windows.Forms.Form , WinForms Designer works really nicely. But; when I create a new class and expand System.Windows.Forms.Panel , the designer does not work so elegant - it just shows an abstract view a list of types of components contained in the panel (as opposed to the actual location on the display panel controls.)
Is there any way to get the Designer to work with the panel better?
Or is there some workaround so that I can create a form with a constructor and then use it as if it were just a panel?
What I'm really looking for is some โuser interfaceโ element that I can build with a constructor, and then dynamically (read: programmatically) add / remove this โelementโ for a larger user interface.
Jared source share