<disclaimer>I have not built anything in .net windows forms that was anything more than a simple test rig or utility so I can't answer authoritatively. I offer this as an arbitrary suggestion that may likely be crazy and/or stupid.</disclaimer>
Perhaps this will work: Build a base form class from which all your application's forms will derive. Then at some point in the form load process a event handler in the base form can spin thru all the controls on the form and apply the desired styles to the form. This way you can add a new form to your project and simply inherit it from your base form to get all the predefined look and feel.
There aren't windows form style sheets are there?
-
Peter