谢谢了,找了好久了,太谢谢了
谢谢了,找了好久了,太谢谢了
2007-07-15 12:59
2007-07-17 00:24
2007-07-17 16:42




2007-07-23 10:59
2007-08-15 15:09
2007-09-07 17:45
2007-09-07 17:49
2007-09-08 12:24
这样行不行:
在父窗口弹出字窗口时:
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不自动弹出呢????

2007-09-08 12:30
2007-12-25 03:01