Windows Phone 7 Navigate To URL

931 Views Asked by At

I have a folder named Views and inside it I have pages I want to navigate to. There is a page inside this folder named "Y.XAML" so I'm trying to use:

NavigationService.Navigate(new Uri("Viev//Y.xaml", UriKind.Relative));

Why is this not working?

2

There are 2 best solutions below

1
On BEST ANSWER

Try this.

NavigationService.Navigate(new Uri("/Views/YourPage.xaml", UriKind.Relative));
0
On
  1. You Navigate to "Viev" not "Views".
  2. Its Views/Y.xaml not Views//Y.xaml

Other then that it should work. If not, provide more Information