In my windows phone 8 application I have 2 xaml files.
By default when you run the application, it opens ‘MainPage.xaml’.
To set my second file (i.e., ‘MediaPlayer.xaml’) as start page.
• Open ‘WMAppManifest.xml’
• In ‘Application UI’ tab, set Navigation Page = MediaPlayer.xamlSet Navigation Page WP8
We can also change it in App.xaml in the Application_Launching event with below statement
App.RootFrame.Navigate(new Uri("/MediaPlayer.xaml",UriKind.Relative));
🙂




Leave a comment