我知道这个问题已经得到解答,但尽管我努力了,我还是无法以编程方式关闭我的应用程序。我试过这个,它不起作用:
private void CloseAppCommand_Executed(object sender, ExecutedRoutedEventArgs e)
{
System.Windows.Forms.Application.Exit();
}
这(但 Visual Studio 2010 无法识别):
Application.Current.Shutdown();
有人知道为什么这些解决方案不起作用吗?我认为这可能是因为 WPF vs WinFOrms,但我不确定。