Reputation: 69
I create new project for Windows Store (C#) from template Split App (XAML) and I want to change Startup page from ItemsPage.xaml to SplitPage.xaml. How can I do that?
Upvotes: 1
Views: 1077
Reputation: 15296
if (!rootFrame.Navigate(typeof(ItemsPage), "AllGroups"))
ItemsPage
to whichever page you want to open first, in your case SplitPage
.Upvotes: 4