如何从另一个类创建多个picturebox

时间:2016-08-24 08:27:12

标签: c# winforms

我正在制作一个简单的游戏,我想创建PictureBox es作为敌人但是一个人创建它们很难,所以我试图为他们创建一个类。

但它没有用,你能帮忙吗?

public class enemies
{
    PictureBox pbox = new PictureBox();
    public Image img;

    public int enemy_top(int a)
    {
        pbox.Top = a;
        return a;
    }

    public int enemy_left(int b)
    {
        pbox.Left = b;
        return b;
    }

    private void timer2_Tick(object sender, EventArgs e)
    {
        enemies enemy1 = new enemies();
        enemy1.img = player.Image;
        enemy1.enemy_left(10);
        enemy1.enemy_top(20);

    ...

0 个答案:

没有答案