怎样实现C#获取另一个窗体的控件值

2024-11-02 06:27:19
推荐回答(3个)
回答(1):

让From1窗体中Text1Box控件的值传给Form2窗体中的TextBox控件

Form1窗体
{
Button点击
{
Form2 f2 = new Form2();
f2.an = this.TextBox1.Text; //传值给Form2定义的an变量
f2.Show();
}
}

Form1窗体
{
string an = ""; //定义一个变量用来接收Form1传过来的值

窗体Load方法
{
this.TextBox1.Text = an; //显示Form1传过来的值
}
}

回答(2):

Form1 下的Button下的的
Form2 f2 = new Form2();
f2.GetId(textBox1 .Text );
this.Hide();
f2.Show();
Form2 的代码:
public Form2()
{
InitializeComponent();
}
public void GetId(string id)
{
textBox1.Text = id;
}

回答(3):

Form1
下的Button下的的
Form2
f2
=
new
Form2();
f2.GetId(textBox1
.Text
);
this.Hide();
f2.Show();
Form2
的代码:
public
Form2()
{
InitializeComponent();
}
public
void
GetId(string
id)
{
textBox1.Text
=
id;
}