东人EP的内陆空间!
posts - 77, comments - 54, trackbacks - 0, articles - 0
IT博客
::
首页
::
新随笔
::
联系
::
聚合
::
管理
关于事件和委托的理解2
Posted on 2006-05-31 12:23
东人EP
阅读(162)
评论(0)
编辑
收藏
引用
所属分类:
.NET
事件和委托联合实例:
1
using
System;
2
3
namespace
EventHandler
4
{
5
delegate
void
DlgDoCalcDelegate();
6
/**/
///
<summary>
7
///
Class1 的摘要说明。
8
///
</summary>
9
class
EventsHandler
10
{
11
private
void
DoAdd()
12
{
13
AddMethod();
14
}
15
16
private
void
AddMethod()
17
{
18
long
lngFirstValue;
19
long
lngSecondValue;
20
long
lngSum;
21
Console.WriteLine(
"
请输入第一个进行运算的数值:
"
);
22
lngFirstValue
=
long
.Parse(Console.ReadLine());
23
Console.WriteLine(
"
请输入第二个进行运算的数值:
"
);
24
lngSecondValue
=
long
.Parse(Console.ReadLine());
25
lngSum
=
lngFirstValue
+
lngSecondValue;
26
Console.WriteLine(
"
{0}与{1}的相加等于{2}
"
, lngFirstValue, lngSecondValue, lngSum);
27
}
28
29
/**/
///
<summary>
30
///
应用程序的主入口点。
31
///
</summary>
32
[STAThread]
33
static
void
Main(
string
[] args)
34
{
35
EventsHandler myEventHandler
=
new
EventsHandler();
36
calc mycalc
=
new
calc();
37
mycalc.evtDoCalc
+=
new
DlgDoCalcDelegate(myEventHandler.DoAdd);
38
Console.WriteLine(
"
触发加法运算事件------
"
);
39
mycalc.DoCalc();
40
Console.Read();
41
}
42
43
}
44
45
class
calc
46
{
47
public
event
DlgDoCalcDelegate evtDoCalc;
48
public
void
DoCalc()
49
{
50
evtDoCalc();
51
}
52
}
53
}
54
只有注册用户
登录
后才能发表评论。
Powered by:
IT博客
Copyright © 东人EP
日历
<
2006年6月
>
日
一
二
三
四
五
六
28
29
30
31
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
1
2
3
4
5
6
7
8
常用链接
我的随笔
我的评论
我参与的随笔
留言簿
(11)
给我留言
查看公开留言
查看私人留言
随笔分类
(77)
.NET(43)
Ajax(11)
Design Pattern(1)
Java(1)
JavaScript(5)
MapInfo(10)
NB(6)
随笔档案
(77)
2007年2月 (4)
2007年1月 (10)
2006年12月 (1)
2006年11月 (2)
2006年10月 (5)
2006年9月 (9)
2006年8月 (13)
2006年7月 (8)
2006年6月 (19)
2006年5月 (6)
搜索
最新评论
1. re: 我现在Netyi.net上的下载资料,上面的有许多不错的资料,有好多程序设计方面的!
评论内容较长,点击标题查看
--CALDWELLMarjorie
2. re: PetShop3.0学习---数据库关系图
牛XX 分这么细的表
--sf2009
3. re: 显示多行InfoTips
感谢分享你的成功!:)
--LiWeiJiang
4. re: 使用asp.net 2.0和SQL SERVER 2005构建多层应用
不荀了。www.yougoo.net.cn
--ded
5. re: 我现在Netyi.net上的下载资料,上面的有许多不错的资料,有好多程序设计方面的!
评论内容较长,点击标题查看
--dsfsd
阅读排行榜
1. 我现在Netyi.net上的下载资料,上面的有许多不错的资料,有好多程序设计方面的!(6662)
2. MapInfo MapXtreme 2005 WebGIS上实现简单鹰眼设计!(6619)
3. C#实现串口通信编程(3751)
4. ClickOnce 打包部署WinForm 应用程序(3110)
5. SQLHelper.cs(3010)
评论排行榜
1. 我现在Netyi.net上的下载资料,上面的有许多不错的资料,有好多程序设计方面的!(9)
2. 实现漂亮的XP效果!(8)
3. MapInfo MapXtreme 2005 WebGIS上实现简单鹰眼设计!(7)
4. 如何实现服务器端下页面动态添加JavaScript脚本 (4)
5. PetShop3.0学习---数据库关系图(3)