顶了~~
这样行不行:
在父窗口弹出字窗口时:
private void button1_Click(object sender, EventArgs e)
{
Form2 newfrm = new Form2();
newfrm.label1.Text = this.textBox1.Text;
newfrm.Show();
}
其中字窗口form2中label1(或者可以设其他的变量)的属性是public。