我已经在我的表单中启动了一个类:
namespace StartScreen
{
public partial class SetupScreen : Form
{
Battleship myBattleship;
Control myObject;
public SetupScreen()
{
InitializeComponent();
myBattleship = new Battleship();
//Create Class Object
}
}
}
我想以另一种形式访问类对象myBattleship,我可以通过它,但是当我这样做时,我无法将其公开,因此可以从新表单到处访问它。我该怎么做呢?
答案 0 :(得分:0)
:
public class Battleship
{
//define what you want///
}
public myBattleship = new Battleship();
在表格中你想使用myBattleship:
MainForm.myBattleship;