expose a property from the 子窗体
class 子窗体 : Form
{
  public string YourText { get {return mtextbox.Text;}}  ...
}子窗体1.Show();
MyTextBox.Text = 子窗体1.YourText;

解决方案 »

  1.   

    actually, you'd better do子窗体1.ShowDialog();
    MyTextBox.Text = 子窗体1.YourText;otherwise, pass the 父窗体 object  into 子窗体, and call 父窗体's properties or methods directly in 子窗体
      

  2.   

    你可义定义一个public static 变量其实相当于全局变量,你可以在任何类里(一个工程)用它,而不用创建类的实例