摘要:
页面上一个查询按钮,当用户点击 回车键 的时候 处罚查询按钮的onclick事件public MainPage() {InitializeComponent(); this.KeyDown += new KeyEventHandler(MainPage_KeyDown);} void MainPage_KeyDown(object sender, KeyEventArgs e) { //throw new NotImplementedException(); if (e.Key == Key.Enter) { ... 阅读全文
posted @ 2014-02-21 14:03
高山-景行
阅读(311)
评论(0)
推荐(0)