Windows Phone 8 - 页面导航(跳过页面)

时间:2015-01-19 06:09:35

标签: c# windows-phone-8

  

在Windows 8手机中,我从第1页导航到第2页然后再到第3页,当从第3页返回时,我必须跳过第2页

1 个答案:

答案 0 :(得分:0)

使用NavigationService.RemoveBackEntry()。这将删除导航堆栈中的最后一个条目。您可以在导航到OnNavigatedTo方法的第3页后直接执行此操作。

protected override void OnNavigatedTo(NavigationEventArgs e)
{
    ...
    NavigationService.RemoveBackEntry();
    ...
}