会员
周边
捐助
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
javawebsoa
CnBlogs
Home
New Post
Contact
Admin
window phone开发之 禁用back键
在开发过程中,因为页面是无状态的,可能会导致页面的回退操作逆向业务需求而禁用回退
两步可以轻松搞定
第一 在XAML文件注册事件:
BackKeyPress="PhoneApplicationPage_BackKeyPress">
第二在后台实现方法:
private void PhoneApplicationPage_BackKeyPress(object sender, System.ComponentModel.CancelEventArgs e) { e.Cancel = true; }
或者直接实现重载
protected override void OnBackKeyPress(System.ComponentModel.CancelEventArgs e) { e.Cancel = true; }
posted @
2011-10-13 16:37
javawebsoa
Views(
203
) Comments(
0
)
Edit
收藏
举报
刷新页面
返回顶部
公告