WP7重新定义返回键的方法
protected override void OnBackKeyPress(System.ComponentModel.CancelEventArgs e)
{
//你自己的代码。认真负责些。
e.Cancel = true; //取消默认行为。
}
摘自 xiechengfa的专栏
补充:移动开发 , Windows Phone ,
protected override void OnBackKeyPress(System.ComponentModel.CancelEventArgs e)
{
//你自己的代码。认真负责些。
e.Cancel = true; //取消默认行为。
}
摘自 xiechengfa的专栏
补充:移动开发 , Windows Phone ,