如何从另一个方法访问我的控件

本文关键字:访问 我的 控件 方法 另一个 | 更新日期: 2023-09-27 18:10:26

我正在制作太空入侵者,我希望我的子弹从我的大炮所在的位置出来。当我按空格键时,子弹会发射,但我需要它能够访问我的cannonX的位置,每次我按空格键时,它都不允许我访问它的信息。

    public void tsbtnStart_Click(object sender, EventArgs e)
    {
        // Make invader
            Invader invaderX = new Invader();
            pnlBattleField.Controls.Add(invaderX);
        // Mke UFO
            Ufo ufoX = new Ufo();
            pnlBattleField.Controls.Add(ufoX);

        // Make cannon
            Cannon cannonX = new Cannon(this.pnlBattleField.Height - 80);
        if (made == false)
        {
            pnlBattleField.Controls.Add(cannonX);
            made = true;
        }
        Point location = cannonX.PointToScreen(Point.Empty);

        tmrClock.Interval = 200;
        tmrClock.Start();
        tmrClock2.Interval = 100;
        tmrClock2.Start();
    }
    public void Form1_KeyPress(object sender, KeyPressEventArgs e)
    {
        if (e.KeyChar == (char)Keys.Space)
        {
            Bullet bulletX = new Bullet(this.pnlBattleField.Height - 80, location.x );
            // "location does not exist in current context
            pnlBattleField.Controls.Add(bulletX);
        }
    }

如何从另一个方法访问我的控件

locationcannonXtsbtnStart_Click中的局部变量,因此一旦tsbtnStart_Click返回,它们就不存在了。让它们成为你的类的属性,这样它们就可以在Form1_KeyPress和其他方法中保存和访问。

你声明

Point location = cannonX.PointToScreen(Point.Empty);

在你的方法中:

public void tsbtnStart_Click(object sender, EventArgs e)

您需要在开始时在类成员中声明此位置。之后,您将用正确的值覆盖他的值。

像这样:

private Point location = new Point();
location = cannonX.PointToScreen(Point.Empty); // in your method