当用户离开我的页面然后使用后退按钮返回页面时,我希望他们被重定向到不同的页面,有没有办法可以做到这一点?
问问题
223 次
1 回答
0
是的,通过快速的 google 搜索或 StackOverflow 搜索,您会找到它。但是,由于我心情很好:
protected override void OnBackKeyPress(System.ComponentModel.CancelEventArgs e)
{
if (DecoderPrompt.IsOpen)
{
e.Cancel = true;
// Navigate to different page:
NavigationService.Navigate(new Uri("/View/YourView.xaml", UriKind.Relative));
}
于 2012-08-06T06:25:20.303 回答