How to Navigate to a Page in WPF

You can use NavigationService.Navigate method to navigate to a page.

The following code snippet navigates to NewPage.xaml from current page.

// Navigate to new page 
Uri pageFunctionUri = new Uri("NewPage.xaml", UriKind.Relative);
this.NavigationService.Navigate(pageFunctionUri);