Reputation: 9141
How do I change the page in a WP7 application?
Upvotes: 7
Views: 6373
Reputation: 3169
There's additional information about page navigation on MSDN here.
Upvotes: 2
Reputation: 164291
Use NavigationService.Navigate.
Example:
NavigationService.Navigate(new Uri("/Schedules.xaml", UriKind.Relative));
Upvotes: 16