To navigate to a newest page, we can use the Navigate() method from the frame.
contentRoot.Navigate(typeof(MyPage), parameter);
where contentRoot is the Frame instance and MyPage a control inheriting from Page
In MyPage, the OnNavigatedTo() method will be called once the navigation will complet...