Frame navigation in xaml return false
问题 Hello, I'm working in a simple Windows 8 application with xaml and c#. I'm using the VS 2012 templates to create pages, with navigation system included. I'm loading a lot of data, so I decided to add a loading page with a ProgressRing and navigate to the first Application page when loading data is finished: //loading page protected async override void OnNavigatedTo(NavigationEventArgs e) { ... await topCookerManager.GetBlogsAsync(); this.Frame.Navigate(typeof(MainPage)); ... } It works well