Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

Thanks

share|improve this question

2 Answers

up vote 8 down vote accepted
NavigationService.Navigate(new Uri("/NextView.xaml", UriKind.Relative));
share|improve this answer
Thank you very much – CoolStraw Oct 20 '10 at 15:13

You can use the Navigator to do this:

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.