我有一个名为 Form1 的主表单,代码为 Program.cs 在 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。