//"返回键"只能用于返回上一页面。只是在有键盘、context菜单或弹出窗口时,这个返回操作是关闭键盘、取消context菜单或者弹出窗口。 // 如果页面中有弹出窗口,按"返回键"应取消弹出窗口,而不是退回到上一页面,Page类提供了可重载的OnBackKeyProcess方法,可供处理此逻辑: protected override void OnBackKeyPress(System.ComponentModel.CancelEventArgs e) { if (popup.IsOpen) { ... Read More
//wp7回车获取 if (e.Key == Key.Enter) { MessageBox.Show("ok,回车enter"); } //*/ /* if (e.PlatformKeyCode == 13) { MessageBox.Show("ok,回车13"); } //*/ Read More