当前位置:
首页 > Python基础教程 >
-
C#窗体间常用的几种传值方式及委托与事件详解
前言
窗体间的传值,最好使用委托方式传值,开始之前,我们先来说一下委托与事件的关系。
委托:是一个类。
事件:是委托类型的一个特殊实例,只能在类的内部触发执行。
首先创建2个窗体,这里我们以form1为发送窗体,form2为接收窗体
form1窗体
form2窗体
方式一(最简单的方式)
form1窗体代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace 事件的方式实现窗体间传值 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } public Form2 msgFrm { get ; set ; } private void Form1_Load( object sender, EventArgs e) { Form2 f2 = new Form2(); msgFrm = f2; f2.Show(); } private void btnSendMsg_Click( object sender, EventArgs e) { //对象内部的,字段或者元素属性最好不要直接让外部直接访问 //最好是通过,设置的方法来控制一下 msgFrm.SetTxt( this .txtMsg.Text); } } } |
form2窗体代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace 事件的方式实现窗体间传值 { public partial class Form2 : Form { public Form2() { InitializeComponent(); } public void SetTxt( string txt) { this .txtMsg.Text = txt; } } } |
方式二(委托方式)
注:委托不熟悉的宝宝们,请自行查阅Func与Action,以及delegate三者区别,这里我们用系统内置的委托Action
form1窗体代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace 事件的方式实现窗体间传值 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } //定义委托 public Action< string > afterMsgSend { get ; set ; } private void Form1_Load( object sender, EventArgs e) { Form2 f2 = new Form2(); afterMsgSend += f2.SetTxt; //给系统内置的委托注册事件 f2.Show(); } private void btnSendMsg_Click( object sender, EventArgs e) { if (afterMsgSend == null ) { return ; } afterMsgSend( this .txtMsg.Text); } } } |
form2窗体代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace 事件的方式实现窗体间传值 { public partial class Form2 : Form { public Form2() { InitializeComponent(); } public void SetTxt( string txt) { this .txtMsg.Text = txt; } } } |
方式三(事件方式,更安全哟)
TextBoxMsgChangeEventArg类继承EventArgs代码
1
2
3
4
5
6
7
8
9
10
11
12
13
|
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 事件的方式实现窗体间传值 { public class TextBoxMsgChangeEventArg:EventArgs { public string Text { get ; set ; } } } |
form1窗体代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace 事件的方式实现窗体间传值 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } public event EventHandler AfterMsgChange; private void Form1_Load( object sender, EventArgs e) { Form2 f2 = new Form2(); AfterMsgChange += f2.AfterTxtChange; f2.Show(); } private void btnSendMsg_Click( object sender, EventArgs e) { AfterMsgChange( this , new TextBoxMsgChangeEventArg() { Text = this .txtMsg.Text }); } } } |
form2窗体
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace 事件的方式实现窗体间传值 { public partial class Form2 : Form { public Form2() { InitializeComponent(); } public void AfterTxtChange( object sender,EventArgs e) { //拿到父窗体传来的文本,强转数据类型 TextBoxMsgChangeEventArg arg = e as TextBoxMsgChangeEventArg; this .SetTxt(arg.Text); } } } |
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式