Winform学习(1)--获取键盘事件

要使的窗体能获得键盘事件,方法之一是重写ProcessCmdKey。重写代码如下:

  protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
{
  If(keyData==Keys.w)//当按下W键时
{

  //此处添加代码
} 

    return true;
}

Ps:返回值是必须的。
PS:需要在窗体上设置KeyPreview属性为True
二、2019.02.07
对于控件来说,可以直接使用其KeyDown事件

private void Comment_KeyDown(object sender, KeyEventArgs e)  // 控件的KeyDown事件
 {
            if (e.Modifiers == Keys.Control && e.KeyCode == Keys.S)
               //...
 }

你可能感兴趣的:(Winform,C#)