关闭WPF GUI应用程序的正确方法:GetCurrentProcess()。Kill(),Environment.Exit(0)或this.Shutdown()

时间:2010-10-07 10:44:04

标签: c# wpf database exception-handling close-application

我的GUI基于桌面的WPF 4.0(C#.Net 4.0)程序适用于SQL Server数据库。每次运行我的应用程序时,它都会通过ADO.NET Entity Framework创建与SQL Server的连接,如果无法访问SQL Server,则会抛出异常并显示MessageBox通知。

现在我希望在用户阅读此消息后,应用程序将关闭。我找到了三种方法:

Process.GetCurrentProcess().Kill();

this.Shutdown(); // Application.Current.Shutdown()

System.Environment.Exit(0);

所有这些都可以正常运行并完成我需要的工作 - 在Windows任务管理器中关闭应用程序并终止应用程序的进程。

我想知道:

  1. 他们之间有什么区别?
  2. 哪种方式可以更快地关闭我的应用程序?
  3. 我应该使用哪种方式来关闭应用程序?
  4. Application.Current.Shutdown()this.Shutdown()关闭申请的方式是否相同?
  5. 或许还有另一种更合适的方法来关闭WPF GUI应用程序?

    当我收到错误时,

    Application.Exit()对我不起作用:

      

    事件“System.Windows.Application.Exit”只能出现在+ =或 - =

    的左侧

    感谢。

4 个答案:

答案 0 :(得分:68)

Application.Current.Shutdown()是关闭应用程序的正确方法。通常是因为触发了您可以处理的退出事件more

当你想杀死应用程序时,应该使用

Process.GetCurrentProcess().Kill()more

的Ad1。这些方法的性质完全不同。关闭进程可以暂停以结束某些操作,杀死应用程序关闭。

Ad2的。可能Kill()将是最快的方式,但这就像内核恐慌。

Ad3的。关闭,因为它会触发关闭事件

AD4。这取决于this是什么。

答案 1 :(得分:2)

  

使用 Application.Current.Shutdown();

     

App.xaml

中添加 ShutdownMode =" OnMainWindowClose"

答案 2 :(得分:1)

private void ExitMenu_Click(object sender, RoutedEventArgs e)
    {
        Application.Current.Shutdown();
    }

答案 3 :(得分:1)

@DamianLeszczyński - Vash的回答几乎涵盖了您提出的4个具体问题。对于Application.Exit()的最后一个问题,这是您可以订阅的事件,而不是您可以调用的方法。它应该像这样使用:

Application.Current.Exit += CurrentOnExit; 
//this.Exit += CurrentOnExit; would also work if you're in your main application class

...

private void CurrentOnExit(object sender, ExitEventArgs exitEventArgs)
{
    //do some final stuff here before the app shuts down
}