Form - potatoscript/csharp GitHub Wiki
Form
■ On Form Closing Event | FormClosingEventArgs |
OnFormClosing
- Index.Designer.cs
private void InitializeComponent()
{
this.FormClosing += Index_FormClosing;
}
- Index.cs
private void Index_FormClosing(Object sender, FormClosingEventArgs e)
{
// code block after form closing
}