我在WPF中遇到有关StartUp Url的问题。我有一个LoginView.xaml和MainWindow.xaml。我想首先打开LoginView后自动打开MainWindow。
的App.xaml
<Application x:Class="XXX.App"
xmlns="....."
Startup="App_Startup"
>
App.xaml.cs
/
// <summary>
/// Called when the application starts.
/// </summary>
private void App_Startup(object sender, StartupEventArgs e)
{
LoginView frmLogin = new LoginView();
bool? resultScreen = frmLogin.ShowDialog();
if (frmLogin.ShowDialog())
{
Uri uri = new Uri("pack:/MainWindow.xaml", UriKind.RelativeOrAbsolute);
Application.Current.StartupUri = uri;
}
else
{
Application.Current.Shutdown();
}
}
LoginView窗口正常打开,之后没有任何反应,应用程序关闭。
我尝试了另一种方法,但我得到了相同的结果。
的App.xaml
<Application x:Class="XXX.App"
xmlns="....."
Startup="App_Startup"
>
App.xaml.cs
/// <summary>
/// Called when the application starts.
/// </summary>
private void App_Startup(object sender, StartupEventArgs e)
{
LoginView frmLogin = new LoginView();
bool? resultScreen = frmLogin.ShowDialog();
if frmLogin.ShowDialog())
{
MainWindow frmMainWindow = new MainWindow();
frmMainWindow.ShowDialog();
}
else
{
Application.Current.Shutdown();
}
}
谁能告诉我,我怎样才能达到预期的效果? 提前谢谢。
答案 0 :(得分:1)
我再次找到了我自己的问题的解决方案:)这里是解决方案
http://www.ageektrapped.com/blog/the-wpf-application-class-overview-and-gotcha/