在 windows phone 8 应用程序中,我能够从 MainPage.xaml 导航到其他页面。但是,如果我尝试从 MainPage.xaml 以外的页面导航,它不会导航,并且我的应用程序正在RootFrame_NavigationFailed
App.xaml 中的事件中中断。
例如:
我能够从 MainPage 导航到 Page1 和 MainPage 到 Page2,但不能从 Page1 导航到 Page2。
这就是我的代码的样子:
NavigationService.Navigate(new Uri("/Page2.xaml", UriKind.Relative));