suvish valsan
suvish valsan

Reputation: 869

windows phone app navigating to an instance of page

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

Answers (1)

Justin XL
Justin XL

Reputation: 39006

No you can't.

The method this.NavigationService.Navigate takes only one parameter which is a Uri.

Upvotes: 1

Related Questions