在一个 Windows Phone 7 应用程序中,我得到了一个 CurrentPage,它在特殊事件中使用 NavigationService 导航到一个新页面:
NavigationService.Navigate(new Uri("/NewPage.xaml", UriKind.Relative));
现在,当用户单击 NewPage 时,我希望应用程序跳过 CurrentPage 并直接转到应用程序的 MainPage。
我尝试使用 NavigationService.RemoveBackEntry,但这会删除 MainPage 而不是 CurrentPage。
如何导航到新页面而不将当前页面放在后台堆栈中?