您的位置:首页 > 编程语言 > C#

C# 中事件

2013-11-06 13:00 267 查看
C#中使用事件需要的步骤:

创建一个委托

将创建的委托与特定事件关联(.Net类库中的很多事件都是已经定制好的,所以他们也就有相应的一个委托,在编写关联

事件处理程序--也就是当有事件发生时我们要执行的方法的时候我们需要和这个委托有相同的签名)

编写事件处理程序

利用编写的事件处理程序生成一个委托实例

把这个委托实例添加到产生事件对象的事件列表中去,这个过程又叫订阅事件

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System;
using System.Collections.Generic;
using System.Text;

namespace Delegate
{
// 热水器
public class Heater
{
private int temperature;
public delegate void BoilHandler(int param);   //声明委托
public event BoilHandler BoilEvent;        //声明事件

// 烧水
public void BoilWater()
{
for (int i = 0; i <= 100; i++)
{
temperature = i;

if (temperature > 95)
{
if (BoilEvent != null)
{ //如果有对象注册
BoilEvent(temperature);  //调用所有注册对象的方法
}
}
}
}
}

// 警报器
public class Alarm
{
public void MakeAlert(int param)
{
Console.WriteLine("Alarm:嘀嘀嘀,水已经 {0} 度了:", param);
}
}

// 显示器
public class Display
{
public static void ShowMsg(int param)
{ //静态方法
Console.WriteLine("Display:水快烧开了,当前温度:{0}度。", param);
}
}

class Program
{
static void Main()
{
Heater heater = new Heater();
Alarm alarm = new Alarm();

heater.BoilEvent += alarm.MakeAlert;    //注册方法
heater.BoilEvent += (new Alarm()).MakeAlert;   //给匿名对象注册方法
heater.BoilEvent += Display.ShowMsg;       //注册静态方法

heater.BoilWater();   //烧水,会自动调用注册过对象的方法
Console.ReadLine();
}
}
}
using System;
using System.Collections.Generic;
using System.Collections;
using System.Linq;
using System.Text;

public delegate void addeventhandler(object sender,EventArgs e);//声明一个事件委托类型
public class listwithevent : ArrayList
{
public event addeventhandler added;
protected virtual void onchanged(EventArgs e)
{
if(added != null )
{
added (this , e);
}
}
public override int Add(object value)
{
int i = base.Add(value );
onchanged (EventArgs .Empty );
return i;
}
}

class eventmethod
{
public void listchanged(object sender, EventArgs e)
{
Console.WriteLine("this is called when the event fires.");
}
}
class program
{
public static void Main()
{
listwithevent  list = new listwithevent ();
eventmethod test = new eventmethod ();
list.added  += new addeventhandler(test .listchanged);
list.Add("123456");
Console.ReadLine();
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: