In 8.1 we use the below code to navigate between pages:
this.Frame.Navigate(typeof(PivotPage));
In 8.1 we need to use the event to add hardware back event:
HardwareButtons.BackPressed += HardwareButtons_BackPressed;
(However, in WP8 Silverlight, there is a direct "OnBackKeyPress"function that can be used to override)
原文:http://www.cnblogs.com/yibinpan/p/3963377.html