GIone hok
GIone hok

Reputation: 69

Set startup page in Windows 8 application

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

Answers (1)

Farhan Ghumra
Farhan Ghumra

Reputation: 15296

  1. Open App.xaml.cs
  2. Search for if (!rootFrame.Navigate(typeof(ItemsPage), "AllGroups"))
  3. Change ItemsPage to whichever page you want to open first, in your case SplitPage.

Upvotes: 4

Related Questions