.NET winform 的keypress事件中判断当用户按下的是哪个键

时间:2014-06-15 23:13:38   收藏:0   阅读:318

keys是按键的枚举类型

private void txtPropertyValue_KeyPress(object sender, KeyPressEventArgs e)
        {
            if ((Keys)e.KeyChar == Keys.Enter)
            {
                Save();
            }
        }

 

.NET winform 的keypress事件中判断当用户按下的是哪个键,布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!