winform 窗体间互相传值
1. 静态变量法 ValueHelper
2. 直接跨窗体调用
public string tempValue;
public TextBox1 ....
targetForm tF = new Form();
tF.tempValue = this.txt1.TextValue;
tF.show()
this.Hide()
这里要注意Show的先后顺序. Show()时,会初始化窗体的所有的控件。
3. 目标窗体 赋值给 原来窗体
public oForm sourceForm;
--
1From targetForm = new 1Form();
targetForm.sourceForm = this;
targetForm.show();
1