方法有很多,下拉給你列幾個:
1 |
public System.Windows.Forms.TextBox textBox1;
|
在調用時就能直接訪問
1
2
3 |
Form1 frm = new Form1();
frm.textBox1.Text = "方法1" ;
frm.Show();
|
1
2
3
4
5
6 |
public Form2( string text)
{
InitializeComponent();
this .textBox1.Text = text;
}
|
調用時
1
2 |
Form2 frm = new Form2( "方法2" );
frm.Show();
|
1
2
3
4
5 |
public string Text3
{
get { return this .textBox1.Text; }
set { this .textBox1.Text = value; }
}
|
調用如下
1
2
3 |
Form3 frm = new Form3();
frm.Text3 = "方法3" ;
frm.Show();
|
等等,還有一些其他方法,這不一一介紹了。
該文章在 2017/3/9 15:34:05 編輯過