我目前很难过。我似乎无法让 KeyEvent 工作。像这样的简单代码不会响应我按下的键。我试过 KeyDown 和 KeyPress。编译时没有错误...是什么原因造成的?它只会让我输入 E 键而不提示消息框。
private void textBox1_KeyDown(object sender, System.Windows.Forms.KeyEventArgs e)
{
if (e.KeyCode == Keys.E)
{
MessageBox.Show("E");
}
}