WPF-将启动窗口添加到项目后,无法关闭应用程序



我无法在关闭主窗口时关闭WPF应用程序。在我的项目中添加了新窗口(启动屏幕(后,就面临这个问题。以下是App.xaml.cs中新添加的代码

SplashScreen splash = new SplashScreen();
splash.Show();
MainWindow main = new MainWindow();
this.MainWindow = main;
Thread.Sleep(2000);           
splash.Close();

尝试将AppShutdownmode设置为ShutdownMode.OnMainWindowClose:

ShutdownMode = ShutdownMode.OnMainWindowClose;

然后,当您关闭main时,应用程序应该关闭(假设您确实首先显示了它(。

相关内容

  • 没有找到相关文章

最新更新