winfrom程序如何做到快速关闭窗体

  private void Form1_FormClosed(object sender, FormClosedEventArgs e)
        {
            Process.GetCurrentProcess().Kill();
            Application.ExitThread();
            this.Dispose();
            this.Close();
        }

有效快速的关闭当前的窗体

posted @ 2015-07-15 16:16  苦力劳动者  阅读(324)  评论(0编辑  收藏  举报