情况一:
新的xaml文件和App.xaml文件位于同一级目录,可以直接更改App.xaml中的StartupUri="xxx.xaml"
情况二:
新的xaml文件和App.xaml文件位于不同目录,比如位于View目录下:
1.更改App.xaml中的StartupUri="xxx.xaml" 为Startup="Application_Startup"
2.在App.xaml.cs中添加Application_Startup方法
private void Application_Startup(object sender, StartupEventArgs e) { Application.Current.StartupUri = new Uri("View/UserInfoWindow.xaml", UriKind.Relative);//View目录下 }
3.重新运行项目,启动页改变