コード Program.cs を含む Form1 というメイン フォームがあります。 program.cs には、私が作成した COM ポート ライブラリへのグローバル参照があります。しかし今、私のフォームにはユーザーコントロールがあります。これらのユーザー コントロールは、Com ポート ライブラリにアクセスできる必要があります。
メインプログラムのコードは次のとおりです。
namespace robot_client
{
static class Program
{
public static SerialReaderWriter serialReaderWriter = new SerialReaderWriter();
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}
ここで、ユーザー コントロール クラスで serialReaderWriter にアクセスできるようにする必要があります。