winforms 在program.cs和form.cs之间共享数据[已关闭]

juzqafwq  于 2022-12-14  发布在  其他
关注(0)|答案(2)|浏览(164)

已关闭。此问题需要details or clarity。当前不接受答案。
**想要改进此问题吗?**通过editing this post添加详细信息并阐明问题。

7天前关闭。
Improve this question
你好,我想知道我如何读/写数据从我的主程序到一个表单应用程序。
任何建议,我应该如何进行?我需要一些基本的,因为我是相当新的编程。
我试着创建一个名为Variables的公共类,并在那里创建了它们,但我无法在窗体中访问它,尽管我可以在主程序中访问它

yb3bgrhw

yb3bgrhw1#

您可以为表单建立具有参数的建构函式:

public MyForm(string data) { // Or other data type
  InitializeComponent();

  // Use data or assign it to a field of your form class
}

并替换Program.cs中的以下行:

Application.Run(new MyForm());

与此:

Application.Run(new MyForm("TheDataToTransfer"));
31moq8wy

31moq8wy2#

如果您想创建和访问应用程序的设置参数,您也可以查看应用程序的设置页面。更多信息-〉Settings page, Project Designer

相关问题