以下是引用roe在2007-1-9 23:26:49的发言:
这样行不行:
在父窗口弹出字窗口时:
private void button1_Click(object sender, EventArgs e)
{
Form2 newfrm = new Form2();
newfrm.label1.Text = this.textBox1.Text;
newfrm.Show();
}
其中字窗口form2中label1(或者可以设其他的变量)的属性是public。
为什么我新建了newfrm之后,label1不自动弹出呢????