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

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Design Patterns
8.Development Class
9.Event
10.File Stream
11.Generics
12.GUI Windows Form
13.Language Basics
14.LINQ
15.Network
16.Office
17.Reflection
18.Regular Expressions
19.Security
20.Services Event
21.Thread
22.Web Services
23.Windows
24.Windows Presentation Foundation
25.XML
26.XML LINQ
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » GUI Windows Form » Form EventScreenshots 
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
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.