Designer support for class not inheriting from Form or Control
Not sure if this is the correct place for this but...
I'm developing a Window system similar to windows forms for XNA (a wrapper for directx).
Would it be possible for me to allow for designer support for these custom classes, which would not inherit from Form or from Control?
Re: Designer support for class not inheriting from Form or Control
To be designed a type must be a component. Strictly speaking this means implementing the IComponent interface but it's generally done by inheriting the Component class.
Re: Designer support for class not inheriting from Form or Control
Cheers, that's what i needed to know!
p.s. The cake is indeed a lie!