I need a default colour and font in one common place in order to use it in multiple windows forms for a desktop application.
What is the best practice for this?
I am thinking of using the Application Settings to define them there but I want to make sure that this is the recommended way or if there is an alternative.
Thank you in advance.
You could make a base form and derive all of your forms from the base. The base form would have the properties set the way you’d like them to appear in all of your other forms.