嘿,我有这段代码:
private void Window_KeyUp(object sender, KeyEventArgs e)
{
if (playing == false)
{
return;
}
if (e.KeyCode == Keys.D1)
{
pictureBox6.Image = Form.Properties.Resources.black_square_button;
player.Stop();
player.Close();
playing = false;
}
}
我不工作,但 Window_KeyDown() 工作。
我的代码有什么问题?
谢谢。