标签: c# winforms forms button keyboard-shortcuts
我想将Window窗口中的按钮与键盘中的字母“S”相关联。 例如: 如果按“Button1”键,“S”键将自动按下
答案 0 :(得分:2)
有关MSDN article for the SendKeys class的更多信息:
SendKeys
// Clicking Button1 private void Button1_Click(System.Object sender, System.EventArgs e) { SendKeys.Send("S"); }