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

keys是按键的枚举类型

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

 

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

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

上一篇:EasyUI的window加载的页面不执行js问题说明


下一篇:Windows Server 取消关机事件跟踪