private void Form1_FormClosed(object sender, FormClosedEventArgs e)
{
Process.GetCurrentProcess().Kill();
Application.ExitThread();
this.Dispose();
this.Close();
}
有效快速的关闭当前的窗体
private void Form1_FormClosed(object sender, FormClosedEventArgs e)
{
Process.GetCurrentProcess().Kill();
Application.ExitThread();
this.Dispose();
this.Close();
}
有效快速的关闭当前的窗体