让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传过来的值 }}
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; }
Form1下的Button下的的Form2f2=newForm2();f2.GetId(textBox1.Text);this.Hide();f2.Show();Form2的代码:publicForm2(){InitializeComponent();}publicvoidGetId(stringid){textBox1.Text=id;}