tags:

views:

145

answers:

5

How can I get my windows form to do something when it is closed.

+7  A: 

Handle the FormClosed event.

To do that, go to the Events tab in the Properties window and double-click the Closed event to add a handler for it.

You can then put your code in the generated MyForm_FormClosed handler.

You can also so this by overriding the OnFormClosed method; to do that, type override onformcl in the code window and OnFormClosed from IntelliSense.

If you want to be able to prevent the form from closing, handle the FormClosing event instead, and set e.Cancel to true.

SLaks
That event is deprecated
Ian
@Ian: Fixed; thanks.
SLaks
+2  A: 

Add an Event Handler to the FormClosed event for your Form.

public class Form1
{

    public Form1()
    {    
        this.FormClosed += MyClosedHandler;
    }

    protected void MyClosedHandler(object sender, EventArgs e)
    {
        // Handle the Event here.
    }
}
Justin Niessner
That event is deprecated
Ian
@Ian - Fixed it.
Justin Niessner
+1  A: 

WinForms has two events that you may want to look at.

The first, the FormClosing event, happens before the form is actually closed. In this event, you can still access any controls and variables in the form's class. You can also cancel the form close by setting e.Cancel = true; (where e is a System.Windows.Forms.FormClosingEventArgs sent as the second argument to FormClosing).

The second, the FormClosed event, happens after the form is closed. At this point, you can't access any variables or controls that the form had.

R. Bemrose
Updated this to use `FormClosing` and `FormClosed` as `Closing` and `Closed` are deprecated.
R. Bemrose
A: 
 public FormName()
 {
      InitializeComponent();
      this.FormClosed += FormName_FormClosed;
 }

private void FormName_FormClosed(object sender, System.Windows.Forms.FormClosedEventArgs e)
{
   //close logic here
}
mint
+3  A: 

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.

public class FormClass : Form
{
   public override void OnFormClosing(CancelEventArgs e)
   {
        base.OnFormClosing(e);
        // Code
   } 
}
Ian
**And call `base.OnFormClosing(e)`.**
SLaks
I would do that naturally and considered it part of the //Code comment. But indeed you're correct, probably should be in there for the lesser experienced. Thanks SLaks.
Ian