Navigate from One Page to Another in Windows Phone 8 using NavigationService

When developing a WP8, you may encounter a scenario where you need to navigate from one page to another within your application.

The PhoneApplicationPage’s class has the property NavigationService which can be used to navigate from one page to another. The NavigationService exposes the Navigate method which loads the specified windows phone application page .

Navigate from One Page to Another in Windows Phone 8 using NavigationService

Below is a sample code snippet which navigates from one page to another.

using AbundantCodeWP8.Resources;

using Microsoft.Phone.Controls;

using Microsoft.Phone.Net.NetworkInformation;

using Microsoft.Phone.Shell;

using Microsoft.Phone.Tasks;

using System;

using System.Collections.Generic;

using System.Linq;

using System.Net;

using System.Windows;

using System.Windows.Controls;

using System.Windows.Navigation;

using Windows.Devices.Geolocation;

namespace AbundantCodeWP8

{

public partial class MainPage : PhoneApplicationPage

{

public MainPage()

{

InitializeComponent();

}

private void Button_Click_1(object sender, RoutedEventArgs e)

{

NavigationService.Navigate(new Uri("/ACCode.xaml",UriKind.RelativeOrAbsolute));

}

private void PhoneApplicationPage_Loaded_1(object sender, RoutedEventArgs e)

{

}

}

}