从哪个页面导航到给定页面
From which page navigated to a given page
我想知道通过按后退按钮从哪个页面导航到给定页面。但是我没有在WP8.1中找到解决方案
参数可以用于前向导航,据我所知
谁能帮帮我?
您想知道在用户导航回您的当前页面之前显示了哪个页面吗?您可以为此检查 Frame.ForwardStack
:
protected override void OnNavigatedTo(NavigationEventArgs e)
{
if (e.NavigationMode == NavigationMode.Back)
{
// get the type of the page that was shown previously
var navigatedFromPage = Frame.ForwardStack[0].SourcePageType;
}
}
我想知道通过按后退按钮从哪个页面导航到给定页面。但是我没有在WP8.1中找到解决方案
参数可以用于前向导航,据我所知
谁能帮帮我?
您想知道在用户导航回您的当前页面之前显示了哪个页面吗?您可以为此检查 Frame.ForwardStack
:
protected override void OnNavigatedTo(NavigationEventArgs e)
{
if (e.NavigationMode == NavigationMode.Back)
{
// get the type of the page that was shown previously
var navigatedFromPage = Frame.ForwardStack[0].SourcePageType;
}
}