要把Form1中的控间改成public属性 具体实现过程请参看一下代码(在form2的textbox1中输入然后在form1中的label1中显示textbox中的内容 //form1代码,form1中有一个label1和一个button1,其中label1的modifier属性为public namespace WindowsApplication1 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { //显示form2 Form2 f2 = new Form2(this); f2.Show(); } } } //form2代码,有一个textbox1,用于输入,有一个button1 namespace WindowsApplication1 { public partial class Form2 : Form { public Form2(Form1 parent) { InitializeComponent(); paf = parent; } private Form1 paf; private void button1_Click(object sender, EventArgs e) { paf.label1.Text = textBox1.Text; this.Hide(); } } } 方法二:直接修改modifier的属性为public然后实例化对象后,当做属性值调用;