我在Windows Phone 8.1 Silverlight项目上工作,我有一个页面,我希望它是我的启动页面而不是“MainPage.xaml”但是当我去App.Xaml.cs时我找不到负责任的允许我更改启动页面的代码,所以有人可以帮助我
谢谢
答案 0 :(得分:1)
转到App.cs
protected override void OnLaunched(LaunchActivatedEventArgs e)
{
/*...*/
if (rootFrame.Content == null)
{
/*...*/
// When the navigation stack isn't restored navigate to the first page,
// configuring the new page by passing required information as a navigation
// parameter
if (!rootFrame.Navigate(typeof(MainPage), e.Arguments))
{
throw new Exception("Failed to create initial page");
}
}
/*...*/
}
更改名称" MainPage"到您自己的页面的名称
答案 1 :(得分:0)
您可以从清单文件中更改它。在解决方案资源管理器中>属性> WMAppManifest.xml