文件名称:多个form界面之间传值.zip
文件大小:74KB
文件格式:ZIP
更新时间:2022-08-12 13:58:37
多个界面之间传值 c# 入门
c#多个窗体的from界面之间传值的两种方法,第一种建立类 定义static字段 public static string a; 第二种改变 窗体的构造函数 public f2() { InitializeComponent(); } 在构造函数里加参数..... string c; // 定义变量用于接收f2的值 public f2(string b)// 加参数 原来为 public f2() f2实例化时也得加参数 两者对应 { c = b; InitializeComponent(); } 然后实例化调用这个界面时也加上参数 就可以传值了 实例化调用时 f2 bb = new f2(b); 具体 文件里写有注释
【文件预览】:
多个form界面之间传值
----f1.Designer.cs(3KB)
----f4.cs(698B)
----Form1.cs(1KB)
----bin()
--------Debug()
----f1.cs(769B)
----f4.Designer.cs(3KB)
----f2.resx(6KB)
----obj()
--------Debug()
----f2.cs(705B)
----Properties()
--------Resources.Designer.cs(3KB)
--------Settings.settings(249B)
--------Resources.resx(5KB)
--------Settings.Designer.cs(1KB)
--------AssemblyInfo.cs(1KB)
----Program.cs(505B)
----f3.Designer.cs(3KB)
----f1.resx(6KB)
----Form1.Designer.cs(4KB)
----1传值.csproj(5KB)
----点此启动.sln(903B)
----Form1.resx(6KB)
----传值.v11.suo(17KB)
----gg.cs(231B)
----f4.resx(6KB)
----f2.Designer.cs(3KB)
----f3.resx(6KB)
----f3.cs(527B)