win phone 获取并且处理回车键事件
时间:2014-06-27 22:15:43
收藏:0
阅读:318
参考自:http://www.cnblogs.com/mohe/archive/2013/03/18/2966540.html
实用场景,比如输入帐号和密码啦,输入搜索关键字啦. protected override void OnKeyDown(KeyEventArgs e) { if (e.Key == Key.Enter) { MessageBox.Show("我是windows phone 回车键");
//代码处理,跳转到哪个页面 } }
评论(0)