1
private void Form1_KeyDown(object sender, KeyEventArgs e)
{
    if (listBox1.Items.Contains(e.KeyCode))
    {
        listBox1.Items.Remove(e.KeyCode);
        listBox1.Refresh();
        timer1.Interval -= 10;
        difficultyProgessbar.Value = 800 - timer1.Interval;
        stats.update(true);
    }
    else
    {
        stats.update(false);
    }

    correctLabel.Text = stats.correct.ToString();
    missedLabel.Text = stats.missed.ToString();
    totalLabel.Text = stats.total.ToString();
    accuracyLabel.Text = stats.accuracy.ToString();

}

private void timer1_Tick(object sender, EventArgs e)
{
    //Add a random key to Listbox
    listBox1.Items.Add((Keys)random.Next(65, 90));
    Application.DoEvents();
    if (listBox1.Items.Count > 7)
    {
        listBox1.Items.Clear();
        listBox1.Items.Add("Game Over");
        timer1.Stop();
    }
}

当我运行我的应用程序时,timer1_Tick事件工作正常,但是Form1_KeyDown当我按任意键时事件不会执行。有什么遗漏吗?为什么Key_Down事件永远不会触发?谢谢

4

1 回答 1

5

Keydown 在 Control with Focus 中触发。
要在表单级别接收它,您需要设置属性。KeyPreview=True 为表单

于 2013-05-21T06:51:28.113 回答