示例#1
0
 public static void ApplicationExit()
 {
     // Prevent these forms from handing form closing as
     // application exist is called in this form.
     foreach (Form f in Application.OpenForms)
     {
         if (f is Form0)
         {
             Form0 f0 = (Form0)f;
             f0.FormClosing -= f0.Form0_FormClosing;
         }
         if (f is Form1)
         {
             Form1 f1 = (Form1)f;
             f1.FormClosing -= f1.Form1_FormClosing;
         }
         if (f is Form2)
         {
             Form2 f2 = (Form2)f;
             f2.FormClosing -= f2.Form2_FormClosing;
         }
         if (f is Form3)
         {
             Form3 f3 = (Form3)f;
             f3.FormClosing -= f3.Form3_FormClosing;
         }
         if (f is Form4)
         {
             Form4 f4 = (Form4)f;
             f4.FormClosing -= f4.Form4_FormClosing;
         }
     }
     Application.Exit();
 }
示例#2
0
        /// <summary>
        ///
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        public void Form1_FormClosing(object sender, FormClosingEventArgs e)
        {
            if (!CommonWindowsForms.PromptExit())
            {
                e.Cancel = true;
            }
            else
            {
                using (new WaitCursor())
                    // Delete the database as the installation was canceled.
                    Tools.IOTools.DeleteDatabaseDirectory();

                // Prevent these forms from handing form closing as
                // application exit is called in this form.
                foreach (Form f in Application.OpenForms)
                {
                    if (f is Form0)
                    {
                        Form0 f0 = (Form0)f;
                        f0.FormClosing -= f0.Form0_FormClosing;
                    }
                    if (f == this) // is Form1
                    {
                        FormClosing -= Form1_FormClosing;
                    }
                    if (f is Form2)
                    {
                        Form2 f2 = (Form2)f;
                        f2.FormClosing -= f2.Form2_FormClosing;
                    }
                    if (f is Form3)
                    {
                        Form3 f3 = (Form3)f;
                        f3.FormClosing -= f3.Form3_FormClosing;
                    }
                    if (f is Form4)
                    {
                        Form4 f4 = (Form4)f;
                        f4.FormClosing -= f4.Form4_FormClosing;
                    }
                }

                Application.Exit();
            }
        }