2006-12-21 12:12
2006-12-23 19:51
2007-01-05 14:33
2007-01-05 17:15
2007-01-05 17:19
2007-01-07 11:18
2007-01-08 12:22
2007-01-08 21:04
顶了~~
2007-01-09 21:11
这样行不行:
在父窗口弹出字窗口时:
private void button1_Click(object sender, EventArgs e)
{
Form2 newfrm = new Form2();
newfrm.label1.Text = this.textBox1.Text;
newfrm.Show();
}
其中字窗口form2中label1(或者可以设其他的变量)的属性是public。

2007-01-09 23:26