Change the start page in App.Xaml.cs :
private void Application_Launching(object sender, LaunchingEventArgs e) { Uri nUri = new Uri("/SecondPage.xaml", UriKind.Relative); ((App)Application.Current).RootFrame.Navigate(nUri); }
Setting up a static launch page in the Property\WMAppManifest.xml file
<DefaultTask Name ="_default" NavigationPage="SecondPage.xaml"/>
Edit
Try:
private void Application_Launching(object sender, LaunchingEventArgs e) { Uri nUri = new Uri("/GamePage.xaml", UriKind.Relative); RootFrame.Navigate(nUri); }
and in Property\WMAppManifest.xml clear NavigationPage:
<DefaultTask Name ="_default" NavigationPage=""/>
source share