第1个回答 2011-04-12
form1zhong 将label1 的Modifiers 属性 设为Public
private void btn_NewEmp_Click(object sender, EventArgs e)
{
Form2 frm = new Form2 ();
frm .MotherForm = this;
frm .ShowDialog();
}
form2 中
public form1 MotherForm;
private void btn_Edit_Click(object sender, EventArgs e)
{
MotherForm.label1.Text = this.TextBox1.Text.ToString();
This.Close();
}
试试这一个方法 不是最好的 但应该可以实现传值