如何激活主要课程中的事件

时间:2018-03-05 23:05:43

标签: c# class events

我班上有一个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]);
        }
    }

0 个答案:

没有答案