gpt4 book ai didi

c# - 在 WinForms 窗体之间传递数据

转载 作者:行者123 更新时间:2023-11-30 18:40:41 25 4
gpt4 key购买 nike

<分区>

我在我的项目中制作了一个辅助表单,它可以从主表单获取数据,并且应该在单击按钮时将一些数据传递给主表单。
这是代码:

Add.cs:

        private void button1_Click(object sender, EventArgs e)
{
main ma = new main();

ma.optionType = "add";
ma.optionName = txtName.Text;
ma.optionURL = txtURL.Text;
ma.optionInterval = "12";
//What should I pass here?


this.Close();
}

ma​​in.cs:

  private string opt;// create a property
public string optionType
{
get
{
return opt;
}
set
{
opt = value;
}
}
private string opt2;// create a property
public string optionName
{
get
{
return opt2;
}
set
{
opt2 = value;
}
}
private string opt3;// create a property
public string optionURL
{
get
{
return opt3;
}
set
{
opt3 = value;
}
}
private string opt4;// create a property
public string optionInterval
{
get
{
return opt4;
}
set
{
opt4 = value;
}
}

我的问题是,在单击 button1(在 add.cs 中)后,我不知道何时尝试从 add.cs 获取数据。我应该用什么事件来检查数据是否来了?

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com