c# - Visual Studio 2013: Is there a way to set properties like Autosize to true for all Forms on a particular project? -
i'm curious if there easy way set winform property autosize (for example) true every form in project without having manually change every single 1 of them. thanks!
create form called baseform , let other forms inherit it. on baseform can set desired font, scaling etc. , other forms inherit these properties. first thing in every windows forms project fire up.
you may consider creating basedialog, inheriting baseform. basedialog can have hidden minimize/maximize buttons etc. common modal dialogs in application.
Comments
Post a Comment