I have same settings for all of my forms
for example color , font , align, etc
How can i do these settings for one form and inheriting it on all forms.
thanks.
Edition 1 :
i am using Windows Forms.
I have same settings for all of my forms for example color , font
Share
One way would be to extend/inherit from the form class, set the properties the way you like in your constructor, and let your forms inherit from that class.
Something like:
and then make your forms based on RedForm rather than Form.