在form1中的button_click事件里:
Form2 f2 = new Form2();
f2.Re_show(this);
this.Hide();
在form2中的Re_show方法中:
Form1 f1 = new Form1();
f1.Show();
this.Close();
在form1中的button_click事件里:
Form2 f2 = new Form2();
f2.Re_show(this);
this.Hide();
在form2中的Re_show方法中:
Form1 f1 = new Form1();
f1.Show();
this.Close();