在
Windows Phone 7应用程序中,我获得了一个CurrentPage,在特殊事件中,使用NavigationService导航到新页面:
NavigationService.Navigate(new Uri("/NewPage.xaml",UriKind.Relative));
现在,当用户单击NewPage时,我希望应用程序跳过CurrentPage并直接转到应用程序的MainPage.
我尝试使用NavigationService.RemoveBackEntry,但这会删除MainPage而不是CurrentPage.
导航到NewPage.xaml传递参数时,您知道何时从Backstack中删除上一页.
原文链接:https://www.f2er.com/windows/363620.html你可以这样做:
从CurrentPage.xaml导航到NewPage.xaml时,沿参数传递
bool remove = true; String removeParam = remove ? bool.TrueString : bool.FalseString; NavigationService.Navigate(new Uri("/NewPage.xaml?removePrevIoUs="+removeParam,UriKind.Relative));
在NewPage.xaml的OnNavigatedTo事件中,检查是否删除上一页.
bool remove = false; if (NavigationContext.QueryString.ContainsKey("removePrevIoUs")) { remove = ((string)NavigationContext.QueryString["removePrevIoUs"]).Equals(bool.TrueString); NavigationContext.QueryString.Remove("removePrevIoUs"); } if(remove) { NavigationService.RemoveBackEntry(); }
这样,如果要从Backstack中删除它,可以决定CurrentPage.xaml.