c# windows窗体间传值
项目中有两个窗体 form1 form2
现在项目启动时加载form1 然后点击form1中的button按钮将
form1中texbox中的值传给 form2
同时关闭form1
------解决方案--------------------http://blog.csdn.net/wuyazhe/article/details/5642431
http://bbs.csdn.net/topics/360140208
------解决方案--------------------form2 的构造方法加个参数就好传递了:
string str;
public Form2(string str)
{
this.str = str;
InitializeComponent();
}
------解决方案--------------------呃 你都this.Close();下面的还能运行?