关于c#两窗体间文本框的传值
建两个窗体,每个窗体各有一个textbox和butten ,当点form1 中的butten时,弹出form2,在form2中的textbox输入文字,点butten ,此时form1中的textbox内容和form2中的textbox一样。我做了如下代码,但是实现不了,form1中的textbox内容没有任何反映,请高手指点:
form1中代码:
private void button1_Click(object sender, EventArgs e)
{
Form2 fm = new Form2();
fm.Show();
}
public string t
{
get { return this.textBox1.Text; }
set { this.textBox1.Text = value; }
}
form2中代码:
private void button1_Click(object sender, EventArgs e)
{
Form1 f = new Form1();
f.t = this.textBox1 .Text ;
}
请高手指点,就用属性的方法传值,请不要用别的方法