在Windows Phone 8应用程序中,我可以从MainPage.xaml导航到其他页面。但是,如果我尝试从MainPage.xaml以外的页面导航,它不会导航,我的应用程序在App.xaml中的RootFrame_NavigationFailed
事件中打破。
例如:
我可以从MainPage导航到Page1和MainPage到Page2,但不是 Page1到Page2。
这就是我的代码:
NavigationService.Navigate(new Uri("/Page2.xaml", UriKind.Relative));