设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 6485|回复: 1
打印 上一主题 下一主题

WinForm下的键盘事件(KeyPress、KeyDown)

[复制链接]
跳转到指定楼层
1#
发表于 2009-11-24 01:08:44 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
KeyDown事件用来处理功能键:F1 F2 F3...
keyPress事件用来处理字符比如说:A B C... 1 2 3...
注:处理该事件时,需要先将窗体的 KeyPreview=true;
KeyPress事件的示例:
        private void FormMain_KeyPress(object sender, KeyPressEventArgs e)
        {
            if (e.KeyChar.ToString() == Keys.A.ToString())
            {
                this.TSMIGoto_Click(sender, e); //满足条件后执行事件
            }
        }
KeyDown事件的示例:
        private void FormMain_KeyDown(object sender, KeyEventArgs e)
        {
            if (e.KeyData == Keys.F8)
            {
                this.TSMIGoto_Click(sender, e); //满足条件后执行事件
            }
        }
您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-18 23:49 , Processed in 0.057002 second(s), 10 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表