1

我已经在我的表单中启动了一个类,如下所示:

namespace StartScreen
{
    public partial class SetupScreen : Form
    {
        Battleship myBattleship;
        Control myObject;

        public SetupScreen()
        {
            InitializeComponent();

            myBattleship = new Battleship();
            //Create Class Object
        }
    }
}

我想以另一种形式访问类对象 myBattleship,我可以通过它,但是当我这样做时,我无法将其公开,因此可以从新形式的任何地方访问它。我该怎么做呢?

4

1 回答 1

0

在主要形式:

  public  class Battleship
{
   //define what you want///
}
 public  myBattleship = new Battleship();

在您想使用 myBattleship 的表单中:

MainForm.myBattleship;
于 2013-03-27T15:16:59.163 回答