views:

46

answers:

2

Hi,

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

Thanks

+4  A: 
NavigationService.Navigate(new Uri("/NextView.xaml", UriKind.Relative));
Olivier PAYEN
Thank you very much
Miloud B.
+1  A: 

You can use the Navigator to do this:

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