如何在C#Windows窗体中将按钮与键盘链接

时间:2015-02-10 14:18:40

标签: c# winforms forms button keyboard-shortcuts

我想将Window窗口中的按钮与键盘中的字母“S”相关联。 例如: 如果按“Button1”键,“S”键将自动按下

1 个答案:

答案 0 :(得分:2)

有关MSDN article for the SendKeys class的更多信息:

// Clicking Button1
private void Button1_Click(System.Object sender, System.EventArgs e)
{
    SendKeys.Send("S");
}