我班上有一个keydown事件,它只是不运行不知道怎么或为什么plz帮助。我已经在主要负载中使用了picturebox declare方法。
public void picturebox_declaration()
{
for (int count = 0; count < Ammo; count++)
{
bullet[count] = new PictureBox();
bullet[count].Image = Properties.Resources.Bullet_North;
bullet[count].SizeMode = PictureBoxSizeMode.AutoSize;
bullet[count].Location = new System.Drawing.Point(1527, 293);
}
Level_1_of__desolor.ActiveForm.KeyDown += ActiveForm_KeyDown;
}
public void ActiveForm_KeyDown(object sender, KeyEventArgs e)
{
if(e.KeyCode == Keys.Space)
{
Level_1_of__desolor.ActiveForm.Controls.Add(bullet[0]);
}
}