我的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任务管理器中关闭应用程序并终止应用程序的进程。
我想知道:
Application.Current.Shutdown()
和this.Shutdown()
关闭申请的方式是否相同?或许还有另一种更合适的方法来关闭WPF GUI应用程序?
当我收到错误时, Application.Exit()
对我不起作用:
事件“
的左侧System.Windows.Application.Exit
”只能出现在+ =或 - =
感谢。
答案 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
}