I have a class with windows forms objects:
class SpecialButton {
Button button;
Label label1;
Label label2;
Label label3;
}
How can I make it drawable? And How can I make instance of this class drawn in Form?
I have a class with windows forms objects:
class SpecialButton {
Button button;
Label label1;
Label label2;
Label label3;
}
How can I make it drawable? And How can I make instance of this class drawn in Form?