Windows Phone 7“后退按钮”如何检测?

时间:2014-09-08 20:54:12

标签: windows silverlight windows-phone-7

我正在尝试检测Windows Phone 7的后退按钮到目前为止我一直在使用BackKeyPress()事件,但它不起作用?它不是改变页面(当点击手机上的后退按钮时),而是直接进入菜单!那是为什么?



代码:

//BackKeyPress event handler
private void LeaveWindow(object sender, System.ComponentModel.CancelEventArgs e)
{
     this.Content = new MainPage();
}

1 个答案:

答案 0 :(得分:1)

你有没有尝试过:

protected override void OnBackKeyPress(CancelEventArgs e)
{
    e.Cancel = true;
}