Navigation Between Two Pages:
1 Create a new project by selecting the File | New Project menu command.
2 The New Project window will be displayed. Expand the Visual C# templates, and then select the
Windows Phone templates.
3 Select the Windows Phone App template. Fill in the project name as desired.
4 From the designer view on MainPage.xaml, select page title and change this title text to main page
in the Text properties or in the XAML directly.
5 Right-click your project name in the Solution Explorer, select Add from the menu, and then New
Item.
6 Choose Windows Phone Portrait Page, change the name to SecondPage, and select Add at the
bottom of the page.
7 From the designer view on SecondPage.xaml, select page title and change this title text to second
page in the Text properties or in the XAML directly.
In MAIN PAGE Button Doubble click and add the below code:
private void Button1_Click(object sender, RoutedEventArgs e)
{
NavigationService.Navigate(new Uri("/SecondPage.xaml", UriKind.Relative));
}