Form - potatoscript/csharp GitHub Wiki

Form

On Form Closing Event FormClosingEventArgs

home

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
   }