你要把原来的那个Form1的实例保留下来,用原来的那个实例来控制。
在Form2类中定义一个变量来保存这个Form1的实例。
public Form1 myParentForm;在Form1中这样打开Form2:
Form2 f2 = new Form2();
f.myParentForm = this;
f2.Show();在Form2中通过myParentForm来使用Form1的实例。
调用
myParentForm.Show();