Using Visual C# 2008 express edition, I am trying to create a button on my form to set the form back to default properties, such as size, backcolor, etc... anybody have any examples on how I would do this?
|
By far the simplest way is to just create a new instance of the form and close the old one. That requires a little bit of surgery if this is the main form of your app, closing it would terminate the program. Start by opening Program.cs and edit it so it looks like this:
The ApplicationContext variable now controls the lifetime of the app, instead of the Form1 instance. You can recreate the form with code like this in Form1:
|
|||||||
|
|
For each property info you can get DefaultValueAttribute and set needed Property to its value. |
|||||||||||
|
|
You cannot do this without saving the original state somewhere. Just create some class that holds the default info:
Then use some reflection:
|
|||
|
|
|
The simplest solution might be to define some Form level variables, and record the default values in an Event like the Form Load event :
Then in the Click Event of your button : reset the defaults :
There are some more powerful ways of doing this involving using the 'Settings feature of Visual Studio (at Design Time and Run-Time) : check them out at : How to: Create Application Settings Using the Designer |
|||
|
|