上传者: lzid2008
|
上传时间: 2022-05-31 09:41:32
|
文件大小: 96KB
|
文件类型: ZIP
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();