I wanted to get default view of my form after some interaction with user. In other words after some changes that has been implied by user, what command will return the form to the initial pop up appearance? I have many controls, and calculations, so I dont want to go over the control one by one and set them null or their default value. It would be great, as if I initate the form once more, some how.
|
|
You could do something like this too, assuming you just wanted to reset text on the controls. Call the following function with ResetControl(this) where "this" is your form. You'd want to check the control type so you don't have unintended consequences like wiping out label text.
Although, I still think you'll have far less bugs if you just dispose the form and create a new one (you could load an initial form that loads a user control, and dispose the user control, or use a mdi container form to load another form or something). |
|||||
|
|
You could try clearing the controls on the form, then calling the InitializeComponents() method.
EDIT: Another Option that wouldn't cause any performance issues would be to utilize data binding. Create a data object that maps one to one with all of the fields you'd like to reset, then once it is time to reset the form simply set the data source of your form to a new instance of the data object. |
|||||||||||||||
|
|
The best way is to write a personalized function for TextBox ==> for ComboBox ==> for DataGridView ==> etc... |
|||
|
|
