Windows Phone 8.1 – Page Navigation

In Windows Phone 8.1, Page Navigation method is like this:

Frame.Navigate(typeof(SecondPage), param);

It means that you will navagate to ‘SecondPage’, and pass ‘param’ (a class based on object).

If you needn’t to pass any parameters, You can use this:

Frame.Navigate(typeof(SecondPage));

You can find the documentation for this MSDN link

Leave a Comment