无论如何,我都在努力做到这一点,当我按下 Space 时,会执行某个代码块(确切地说是 cmd_play)。
但是,如果您使用 Form Keypress 执行此操作,它似乎只能工作一次:
private void frmmain_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == Convert.ToChar(Keys.Space))
cmdPlay_Click(null, null);
}
有任何想法吗?