Skip to content

Instantly share code, notes, and snippets.

@jjokela
Created August 11, 2014 08:02
Show Gist options
  • Save jjokela/0b198a21b4cea3609a54 to your computer and use it in GitHub Desktop.
Save jjokela/0b198a21b4cea3609a54 to your computer and use it in GitHub Desktop.
WinForms Lifecycle Events
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WinFormsLifecycleEvents
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
/*
Output:
Form.Load
Form.Shown
Form.Closing
Form.Closed
*/
private void Form1_Load(object sender, EventArgs e)
{
System.Diagnostics.Trace.WriteLine("Form.Load");
}
private void Form1_Shown(object sender, EventArgs e)
{
System.Diagnostics.Trace.WriteLine("Form.Shown");
}
private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
System.Diagnostics.Trace.WriteLine("Form.Closing");
}
private void Form1_FormClosed(object sender, FormClosedEventArgs e)
{
System.Diagnostics.Trace.WriteLine("Form.Closed");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment