我简单写了下,你看下吧。
第一个Form
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
string str = textBox1.Text;
Form2 fm = new Form2(str);
this.Hide();
fm.ShowDialog();
}
}
}
第二个Form
namespace WindowsFormsApplication1
{
public partial class Form2 : Form
{
string st;
public Form2(string str)
{
InitializeComponent();
st = str;
}
private void Form2_Load(object sender, EventArgs e)
{
textBox1.Text = st;
}
}
}
可以通过构造函数来传值,也可以通过方法传值都行。
通过实体或是全局变量,最好是实体
用事件传递参数。
把文本框里的值传出去