Thanks for the response Lloyd. I am confused though. If I simply inherit
my class from Panel, how do I "drop" my new class on a form in the IDE
(there is no instance of my derived class in the toolbox).
well, that's a good question ;-)
I could see 2 way of doing that:
1. drop a panel, edit the generated code by replacing the variable
declaration and creation (new MyClass()) by your fully qualified class name,
and that's it!
2. compile you code, then right click on the toolbox panel, choose add
items, browse for the assembly, load your debug/release/whatever assembly
(the one you are generated, right!), then your GUI controls (of this very
project) will be in your tool box! just uses them as you will of other
controls.