2
votes

How to switch between screens programatically in silverlight on WP7 guys ?

Thanks

2

2 Answers

8
votes
NavigationService.Navigate(new Uri("/NextView.xaml", UriKind.Relative));
1
votes

You can use the Navigator to do this:

this.NavigationService.Navigate(new Uri("/Views/Whatever.xaml"), UriKind.Relative));