私は次のことを理解するのに苦労しています。現在、メイン クラスと 1 つのメイン クラスの 3 つのフォームがあります。
public partial class frmMain : Form
{
public frmMain()
{
InitializeComponent();
}
}
public partial class frmSuppliers : Form
{
public frmSuppliers()
{
InitializeComponent();
}
}
public partial class frmCustomers : Form
{
public frmCustomers()
{
InitializeComponent();
}
}
私のメインプログラムには次のものがあります。
public class Program
{
public StockControl StockSystem = new StockControl("The Book Shop", 20);
}
frmSuppliers と frmMain の StockControl からメソッドにアクセスできるようにしたいと考えています。
これは N00b の質問かもしれませんが、一日中悩まされていました。