可以修改,代码如下:
form1:
private void button10_Click(object sender, System.EventArgs e)
{
Form2 mFrm=new Form2();
mFrm.Frm=this; 
mFrm.Show(); 
}
form2:
private Form1 _Frm;
public Form1 Frm
{
    set
    {
      _Frm=value;        
    }
}

解决方案 »

  1.   

    using System;
    using System.Drawing;
    using System.Collections;
    using System.ComponentModel;
    using System.Windows.Forms;
    using System.Data;namespace WindowsApplication77
    {
    /// <summary>
    /// Form1 的摘要说明。
    /// </summary>
    public class Form1 : System.Windows.Forms.Form
    {
    /// <summary>
    /// 必需的设计器变量。
    /// </summary>
    private System.ComponentModel.Container components = null;
    private System.Windows.Forms.TextBox textBox1;
    private System.Windows.Forms.Button button1;

       public Form1()
    {
    //
    // Windows 窗体设计器支持所必需的
    //
    InitializeComponent(); //
    // TODO: 在 InitializeComponent 调用后添加任何构造函数代码
    //
    } /// <summary>
    /// 清理所有正在使用的资源。
    /// </summary>
    protected override void Dispose( bool disposing )
    {
    if( disposing )
    {
    if (components != null) 
    {
    components.Dispose();
    }
    }
    base.Dispose( disposing );
    } #region Windows 窗体设计器生成的代码
    /// <summary>
    /// 设计器支持所需的方法 - 不要使用代码编辑器修改
    /// 此方法的内容。
    /// </summary>
    private void InitializeComponent()
    {
    this.textBox1 = new System.Windows.Forms.TextBox();
    this.button1 = new System.Windows.Forms.Button();
    this.SuspendLayout();
    // 
    // textBox1
    // 
    this.textBox1.Location = new System.Drawing.Point(112, 104);
    this.textBox1.Name = "textBox1";
    this.textBox1.Size = new System.Drawing.Size(96, 21);
    this.textBox1.TabIndex = 0;
    this.textBox1.Text = "textBox1";
    // 
    // button1
    // 
    this.button1.Location = new System.Drawing.Point(168, 152);
    this.button1.Name = "button1";
    this.button1.Size = new System.Drawing.Size(72, 24);
    this.button1.TabIndex = 1;
    this.button1.Text = "button1";
    this.button1.Click += new System.EventHandler(this.button1_Click);
    // 
    // Form1
    // 
    this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
    this.ClientSize = new System.Drawing.Size(292, 273);
    this.Controls.Add(this.button1);
    this.Controls.Add(this.textBox1);
    this.Name = "Form1";
    this.Text = "Form1";
    this.Load += new System.EventHandler(this.Form1_Load);
    this.ResumeLayout(false); }
    #endregion /// <summary>
    /// 应用程序的主入口点。
    /// </summary>
    [STAThread]
    static void Main() 
    {
    Application.Run(new Form1());
    } private void Form1_Load(object sender, System.EventArgs e)
    {


    } private void button1_Click(object sender, System.EventArgs e)
    {
    Form2 frm2=new Form2();
     frm2.Text=this.textBox1.Text ;
    frm2.Show();
    }
    }
    }
      

  2.   

    把textbox1.text的Modifiers属性设为public
      

  3.   

    你要是想修改 text 中的值可以参考定义一个静态变量存放 text 中的值
    public static s ;
     
      

  4.   

    在 FORM1 类中添加一个属性
    public string TextBoxValue
    {
      get
      {
         return this.txtBox1.Text;
      }
      set
      {
         this.txtBox1.Text = value;
      }
    }
      

  5.   

    Form1是Form1的实例类的类名,而text属性不是static属性,只能是类对象来操纵,因此不能是Form1.Text,不过可以先实例化一个Form1类的对象,然后由他的对象来操作。
    比如:Form1 pForm1=new Form1();
    pForm1.Text="a";
    这样就可以了。至于在另一个窗口中操作form1的text属性,也要先实例化一个form1的对象,然后操作,这样是可以的。
    比如在form2中,先声明form1的对象:
    private form1 pForm1;然后在按钮事件下添加代码:
    if(pForm1!=null)
    {
        pForm1.Close();
        pForm1=null;
    }
    pForm1=new form1();
    pForm1.Text="a";
    pForm1.Show();this.Hide(); //隐藏form2
      

  6.   

    this是代表的本窗体这个实例,就是这个this指向了当前你的form1这个类的当前的这个实例,你用的Form1这个是一个类的名字,不是new 以后的实例,所以你不能那么用.