我有一个快速的问题。我在 Form2 中创建了一个名为“MyObject”的类,其中包含两个变量。按下一个按钮,Form2 中的变量就会改变。现在我的问题是如何在 Form1 中检索 MyObject?这是我的示例代码:
表格1
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
Form2 f = new Form2(this);
f.ShowDialog();
??????? (how can I retrieve Myobject here?????)
}
表格2
public class MyObject
{
public int Value1 { get; set; }
public int Value2 { get; set; }
}
public Form2(Form1 frm1)
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
MyObject obj = new MyObject();
obj.Value1 = 102;
obj.Value2 = 50;
}
谢谢大家