Reputation: 869
can i use navigation service to navigate to object of page in windows phone 8 unlike giving a Uri like
this.NavigationService.Navigate(new Page1());
instead of
NavigationService.Navigate(new Uri("/Page1.xaml", UriKind.Relative));
Upvotes: 0
Views: 322
Reputation: 39006
No you can't.
The method this.NavigationService.Navigate
takes only one parameter which is a Uri
.
Upvotes: 1