// Create a Frame for the page
var rootFrame = new Frame();
rootFrame.Navigate(typeof(BasicPage1));
Then I set the content of the current window to the new Frame I just created, as in:
// Place the frame in the current Window and activate it
Window.Current.Content = rootFrame;
Window.Current.Activate();