Form Window event: closing, closed, load, activated, deactivated : Form Event « GUI Windows Form « C# / C Sharp






Form Window event: closing, closed, load, activated, deactivated

 

using System;
using System.Windows.Forms;
using System.ComponentModel;

public class MainWindow : Form {
    private string lifeTimeInfo;
    public MainWindow() {
        this.Closing += new CancelEventHandler(MainForm_Closing);
        this.Load += new EventHandler(MainForm_Load);
        this.Closed += new EventHandler(MainForm_Closed);
        this.Activated += new EventHandler(MainForm_Activated);
        this.Deactivate += new EventHandler(MainForm_Deactivate);
    }

    protected void MainForm_Closing(object sender, CancelEventArgs e) {
        DialogResult dr = MessageBox.Show("Do you REALLY want to close this app?",
             "Closing event!", MessageBoxButtons.YesNo);
        if (dr == DialogResult.No)
            e.Cancel = true;
        else
            e.Cancel = false;
    }

    protected void MainForm_Load(object sender, System.EventArgs e) { 
        lifeTimeInfo += "Load event\n"; 
    }
    protected void MainForm_Activated(object sender, System.EventArgs e) { 
        lifeTimeInfo += "Activate event\n"; 
    }
    protected void MainForm_Deactivate(object sender, System.EventArgs e) { 
        lifeTimeInfo += "Deactivate event\n"; 
    }
    protected void MainForm_Closed(object sender, System.EventArgs e) {
        lifeTimeInfo += "Closed event\n";
        MessageBox.Show(lifeTimeInfo);
    }
    public static void Main(string[] args) {
        Application.Run(new MainWindow());
    }
}

 








Related examples in the same category

1.Scrolling (AutoScrollMinSize)
2.OnInputLanguageChangedOnInputLanguageChanged
3.Form Focus eventForm Focus event
4.On Mouse Wheel
5.OnMouseEnter, OnMouseHover, OnMouseLeave event
6.OnKeyDown event
7.OnClick event
8.Form OnResize
9.Form OnMove event
10.Cancel EventCancel Event
11.Uncloseable eventUncloseable event
12.Bind key action to a form windowBind key action to a form window
13.Form window closing eventForm window closing event
14.Form window load eventForm window load event
15.Form resize and redrawForm resize and redraw
16.Form Mouse down actionForm Mouse down action
17.Form Key Press actionForm Key Press action
18.Form Paint event
19.Scroll Shapes