How can I get my windows form to do something when it is closed.
|
|
|
Handle the To do that, go to the Events tab in the Properties window and double-click the You can then put your code in the generated You can also so this by overriding the If you want to be able to prevent the form from closing, handle the |
|||||||
|
|
Or another alternative is to override the OnFormClosed() or OnFormClosing() methods from System.Windows.Forms.Form. Whether you should use this method depends on the context of the problem, and is more usable when the form will be sub classed several times and they all need to perform the same code. Events are more useful for one or two instances if you're doing the same thing.
|
||||
|
WinForms has two events that you may want to look at. The first, the The second, the |
||||
|
Add an Event Handler to the FormClosed event for your Form.
|
|||||
|
|
|
|||
|
|