Hi MMDDYY,
Please use the NavigationService.Navigate method to implement navigation between pages as below code.
private void hyperlinkButton1_Click(object sender, RoutedEventArgs e)
{
NavigationService.Navigate(new Uri("/SecondPage.xaml", UriKind.Relative));
}
And if you want to transfer parameters when page navigation, please add parameters after the page's uri as following.
private void passParam_Click(object sender, RoutedEventArgs e)
{
NavigationService.Navigate(new Uri("/SecondPage.xaml?msg=" + textBox1.Text, UriKind.Relative));
}
If you want to go back to pre-page, please call NavigationService.GoBack() method as below. If you want to use the Back Button, please refer to following link.
private void button1_Click(object sender, RoutedEventArgs e)
{
NavigationService.GoBack();
}
https://msdn.microsoft.com/en-us/library/windows/apps/xaml/Dn639128.aspx
Best Regards,
Weiwei