首页 > 代码库 > MSDN搬运 之 [事件]

MSDN搬运 之 [事件]


在发生其他类或对象关注的事情时,类或对象可通过事件通知它们。发送(或引发)事件的类称为“发行者”,接收(或处理)事件的类称为“订户”。

在典型的 C# Windows 窗体或 Web 应用程序中,可订阅由控件(如按钮和列表框)引发的事件。可使用 Visual C# 集成开发环境 (IDE) 来浏览控件发布的事件,选择要处理的事件。IDE 会自动添加空事件处理程序方法和订阅事件的代码。有关更多信息,请参见如何:订阅和取消订阅事件(C# 编程指南)。

事件概述

事件具有以下特点:

  • 发行者确定何时引发事件,订户确定执行何种操作来响应该事件。

  • 一个事件可以有多个订户。一个订户可处理来自多个发行者的多个事件。

  • 没有订户的事件永远不会被调用。

  • 事件通常用于通知用户操作(如:图形用户界面中的按钮单击或菜单选择操作)。

  • 如果一个事件有多个订户,当引发该事件时,会同步调用多个事件处理程序。要异步调用事件,请参见使用异步方式调用同步方法。

  • 可以利用事件同步线程。

  • 在 .NET Framework 类库中,事件是基于 EventHandler 委托和 EventArgs 基类的。

如何:订阅和取消订阅事件(C# 编程指南)

如果您想编写引发事件时调用的自定义代码,则可以订阅由其他类发布的事件。例如,可以订阅某个按钮的“单击”事件,以使应用程序在用户单击该按钮时执行一些有用的操作。

使用 Visual Studio 2005 IDE 订阅事件

  1. 如果“属性”窗口不可见,请在“设计”视图中,右击要创建事件处理程序的窗体或控件,然后选择“属性”。

  2. 在“属性”窗口的顶部,单击“事件”图标。

  3. 双击要创建的事件,例如 Load 事件。

    Visual C# 会创建一个空事件处理程序方法,并将其添加到您的代码中。或者,您也可以在“代码”视图中手动添加代码。例如,下面的代码行声明了一个在 Form 类引发 Load 事件时调用的事件处理程序方法。

    复制
    private void Form1_Load(object sender, System.EventArgs e){    // Add your form load event handling code here.}

    订阅该事件所需的代码行也会在您项目的 Form1.Designer.cs 文件的 InitializeComponent 方法中自动生成。该代码行类似于:

    复制
      this.Load += new System.EventHandler(this.Form1_Load);

以编程方式订阅事件

  1. 定义一个事件处理程序方法,其签名与该事件的委托签名匹配。例如,如果事件基于 EventHandler 委托类型,则下面的代码表示方法存根:

    复制
      void HandleCustomEvent(object sender, CustomEventArgs a)  {     // Do something useful here.  }
  2. 使用加法赋值运算符 (+=) 来为事件附加事件处理程序。在下面的示例中,假设名为 publisher 的对象拥有一个名为 RaiseCustomEvent 的事件。请注意,订户类需要引用发行者类才能订阅其事件。

    复制
    publisher.RaiseCustomEvent += HandleCustomEvent;

请注意,上面的语法是 C# 2.0 中的新语法。它完全等效于 C# 1.0 语法,必须使用以下新关键字显式创建封装委托:

复制
publisher.RaiseCustomEvent += new CustomEventHandler(HandleCustomEvent);

使用匿名方法订阅事件

  • 使用加法赋值运算符 (+=) 来为事件附加匿名方法。在下面的示例中,假设名为 publisher 的对象拥有一个名为 RaiseCustomEvent 的事件,并且还定义了一个 CustomEventArgs 类以承载某些类型的专用事件信息。请注意,订户类需要引用 publisher 才能订阅其事件。

    复制
      publisher.RaiseCustomEvent += delegate(object o, CustomEventArgs e)  {    string s = o.ToString() + " " + e.ToString();    Console.WriteLine(s);  };

请注意,如果您是使用匿名方法订阅的事件,该事件的取消订阅过程就比较麻烦。此时要取消订阅,请返回到该事件的订阅代码,将该匿名方法存储在委托变量中,然后将委托添加到该事件中。

取消订阅

要防止在引发事件时调用事件处理程序,您只需取消订阅该事件。要防止资源泄露,请在释放订户对象之前取消订阅事件,这一点很重要。在取消订阅事件之前,在发布对象中作为该事件的基础的多路广播委托会引用封装了订户的事件处理程序的委托。只要发布对象包含该引用,就不会对订户对象执行垃圾回收。

取消订阅事件

  • 使用减法赋值运算符 (-=) 取消订阅事件:

    复制
      publisher.RaiseCustomEvent -= HandleCustomEvent;

    所有订户都取消订阅某事件后,发行者类中的事件实例会设置为 null。

如何:发布符合 .NET Framework 准则的事件(C# 编程指南)

下面的过程演示了如何将符合标准 .NET Framework 模式的事件添加到您自己的类和结构中。.NET Framework 类库中的所有事件均基于 EventHandler 委托,定义如下:

复制
public delegate void EventHandler(object sender, EventArgs e);
注意

.NET Framework 2.0 引入了此委托的一个泛型版本,即 EventHandler<T>。下面的示例显示如何使用这两种版本。

虽然您定义的类中的事件可采用任何有效委托类型(包括会返回值的委托),但是,通常建议您使用 EventHandler 让事件采用 .NET Framework 模式,如下面的示例所示:

采用 EventHandler 模式发布事件

  1. (如果不需要发送含事件的自定义数据,请跳过此步骤,直接进入步骤 3a。)在发行者类和订户类均可看见的范围中声明类,并添加保留自定义事件数据所需的成员。在此示例中,会返回一个简单字符串。

    复制
    public class CustomEventArgs : EventArgs{    public CustomEventArgs(string s)    {        msg = s;    }    private string msg;    public string Message    {        get { return msg; }    } }
  2. (如果您使用的是 EventHandler 的泛型版本,请跳过此步骤。)在发布类中声明一个委托。为它指定以 EventHandler 结尾的名称。第二个参数指定自定义 EventArgs 类型。

    复制
    public delegate void CustomEventHandler(object sender, CustomEventArgs a);
  3. 使用以下任一步骤,在发布类中声明事件。

    1. 如果没有自定义 EventArgs 类,事件类型就是非泛型 EventHandler 委托。它无需声明,因为它已在 C# 项目默认包含的 System 命名空间中进行了声明:

      复制
      public event EventHandler RaiseCustomEvent;
    2. 如果使用的是 EventHandler 的非泛型版本,并且您有一个由 EventArgs 派生的自定义类,请在发布类中声明您的事件,并且将您的委托用作类型:

      复制
      class Publisher{    public event CustomEventHandler RaiseCustomEvent;}
    3. 如果使用的是泛型版本,则不需要自定义委托。相反,应将事件类型指定为 EventHandler<CustomEventArgs>,在尖括号内放置您自己的类的名称。

      复制
      public event EventHandler<CustomEventArgs> RaiseCustomEvent;

示例

下面的示例演示了上述步骤,它将自定义 EventArgs 类和 EventHandler<T> 用作事件类型。

复制
namespace DotNetEvents{    using System;    using System.Collections.Generic;    // Define a class to hold custom event info    public class CustomEventArgs : EventArgs    {        public CustomEventArgs(string s)        {            message = s;        }        private string message;        public string Message        {            get { return message; }            set { message = value; }        }    }    // Class that publishes an event    class Publisher    {        // Declare the event using EventHandler<T>        public event EventHandler<CustomEventArgs> RaiseCustomEvent;        public void DoSomething()        {            // Write some code that does something useful here            // then raise the event. You can also raise an event            // before you execute a block of code.            OnRaiseCustomEvent(new CustomEventArgs("Did something"));        }        // Wrap event invocations inside a protected virtual method        // to allow derived classes to override the event invocation behavior        protected virtual void OnRaiseCustomEvent(CustomEventArgs e)        {            // Make a temporary copy of the event to avoid possibility of            // a race condition if the last subscriber unsubscribes            // immediately after the null check and before the event is raised.            EventHandler<CustomEventArgs> handler = RaiseCustomEvent;            // Event will be null if there are no subscribers            if (handler != null)            {                // Format the string to send inside the CustomEventArgs parameter                e.Message += String.Format(" at {0}", DateTime.Now.ToString());                // Use the () operator to raise the event.                handler(this, e);            }        }    }    //Class that subscribes to an event    class Subscriber    {        private string id;        public Subscriber(string ID, Publisher pub)        {            id = ID;            // Subscribe to the event using C# 2.0 syntax            pub.RaiseCustomEvent += HandleCustomEvent;        }        // Define what actions to take when the event is raised.        void HandleCustomEvent(object sender, CustomEventArgs e)        {            Console.WriteLine(id + " received this message: {0}", e.Message);        }    }    class Program    {        static void Main(string[] args)        {            Publisher pub = new Publisher();            Subscriber sub1 = new Subscriber("sub1", pub);            Subscriber sub2 = new Subscriber("sub2", pub);            // Call the method that raises the event.            pub.DoSomething();            // Keep the console window open            Console.WriteLine("Press Enter to close this window.");            Console.ReadLine();        }    }}

如何:引发派生类中的基类事件(C# 编程指南)

以下简单示例演示了在基类中声明可从派生类引发的事件的标准方法。此模式广泛应用于 .NET Framework 基类库中的 Windows 窗体类。

在创建可用作其他类的基类的类时,必须考虑如下事实:事件是特殊类型的委托,只可以从声明它们的类中调用。派生类无法直接调用基类中声明的事件。尽管有时您可能希望某个事件只能通过基类引发,但在大多数情形下,您应该允许派生类调用基类事件。为此,您可以在包含该事件的基类中创建一个受保护的调用方法。通过调用或重写此调用方法,派生类便可以间接调用该事件。

示例

复制
namespace BaseClassEvents{    using System;    using System.Collections.Generic;    // Special EventArgs class to hold info about Shapes.    public class ShapeEventArgs : EventArgs    {        private double newArea;        public ShapeEventArgs(double d)        {            newArea = d;        }        public double NewArea        {            get { return newArea; }        }    }    // Base class event publisher    public abstract class Shape    {        protected double area;        public double Area        {            get { return area; }            set { area = value; }        }        // The event. Note that by using the generic EventHandler<T> event type        // we do not need to declare a separate delegate type.        public event EventHandler<ShapeEventArgs> ShapeChanged;        public abstract void Draw();        //The event-invoking method that derived classes can override.        protected virtual void OnShapeChanged(ShapeEventArgs e)        {            // Make a temporary copy of the event to avoid possibility of            // a race condition if the last subscriber unsubscribes            // immediately after the null check and before the event is raised.            EventHandler<ShapeEventArgs> handler = ShapeChanged;            if (handler != null)            {                handler(this, e);            }        }    }    public class Circle : Shape    {        private double radius;        public Circle(double d)        {            radius = d;            area = 3.14 * radius;        }        public void Update(double d)        {            radius = d;            area = 3.14 * radius;            OnShapeChanged(new ShapeEventArgs(area));        }        protected override void OnShapeChanged(ShapeEventArgs e)        {            // Do any circle-specific processing here.            // Call the base class event invocation method.            base.OnShapeChanged(e);        }        public override void Draw()        {            Console.WriteLine("Drawing a circle");        }    }    public class Rectangle : Shape    {        private double length;        private double width;        public Rectangle(double length, double width)        {            this.length = length;            this.width = width;            area = length * width;        }        public void Update(double length, double width)        {            this.length = length;            this.width = width;            area = length * width;            OnShapeChanged(new ShapeEventArgs(area));        }        protected override void OnShapeChanged(ShapeEventArgs e)        {            // Do any rectangle-specific processing here.            // Call the base class event invocation method.            base.OnShapeChanged(e);        }        public override void Draw()        {            Console.WriteLine("Drawing a rectangle");        }    }    // Represents the surface on which the shapes are drawn    // Subscribes to shape events so that it knows    // when to redraw a shape.    public class ShapeContainer    {        List<Shape> _list;        public ShapeContainer()        {            _list = new List<Shape>();        }        public void AddShape(Shape s)        {            _list.Add(s);            // Subscribe to the base class event.            s.ShapeChanged += HandleShapeChanged;        }        // ...Other methods to draw, resize, etc.        private void HandleShapeChanged(object sender, ShapeEventArgs e)        {            Shape s = (Shape)sender;            // Diagnostic message for demonstration purposes.            Console.WriteLine("Received event. Shape area is now {0}", e.NewArea);            // Redraw the shape here.            s.Draw();        }    }    class Test    {        static void Main(string[] args)        {            //Create the event publishers and subscriber            Circle c1 = new Circle(54);            Rectangle r1 = new Rectangle(12, 9);            ShapeContainer sc = new ShapeContainer();            // Add the shapes to the container.            sc.AddShape(c1);            sc.AddShape(r1);            // Cause some events to be raised.            c1.Update(57);            r1.Update(7, 7);            // Keep the console window open.            Console.WriteLine();            Console.WriteLine("Press Enter to exit");            Console.ReadLine();        }    }}

输出

Received event. Shape area is now 178.98Drawing a circleReceived event. Shape area is now 49Drawing a rectangle

如何:实现接口事件(C# 编程指南)

接口可声明事件。下面的示例演示如何在类中实现接口事件。接口事件的实现规则与任何接口方法或属性的实现规则基本相同。

在类中实现接口事件

  • 在类中声明事件,然后在适当的位置调用该事件。

    复制
    public interface IDrawingObject{    event EventHandler ShapeChanged;}public class MyEventArgs : EventArgs {…}public class Shape : IDrawingObject{    event EventHandler ShapeChanged;    void ChangeShape()    {        // Do something before the event…        OnShapeChanged(new MyEventsArgs(…));        // or do something after the event.     }    protected virtual void OnShapeChanged(MyEventArgs e)    {        if(ShapeChanged != null)        {           ShapeChanged(this, e);        }    }}

示例

下面的示例演示如何处理以下的不常见情况:您的类是从两个以上的接口继承的,每个接口都含有同名事件)。在这种情况下,您至少要为其中一个事件提供显式接口实现。为事件编写显式接口实现时,必须编写 addremove 事件访问器。这两个事件访问器通常由编译器提供,但在这种情况下编译器不能提供。

您可以提供自己的访问器,以便指定这两个事件是由您的类中的同一事件表示,还是由不同事件表示。例如,根据接口规范,如果事件应在不同时间引发,则可以将每个事件与类中的一个单独实现关联。在下面的示例中,订户将形状引用强制转换为 IShapeIDrawingObject,从而确定自己将会接收哪个 OnDraw 事件。

复制
namespace WrapTwoInterfaceEvents{    using System;    public interface IDrawingObject    {        // Raise this event before drawing        // the object.        event EventHandler OnDraw;    }    public interface IShape    {        // Raise this event after drawing        // the shape.        event EventHandler OnDraw;    }    // Base class event publisher inherits two    // interfaces, each with an OnDraw event    public class Shape : IDrawingObject, IShape    {        // Create an event for each interface event        event EventHandler PreDrawEvent;        event EventHandler PostDrawEvent;        // Explicit interface implementation required.        // Associate IDrawingObject‘s event with        // PreDrawEvent        event EventHandler IDrawingObject.OnDraw        {            add { PreDrawEvent += value; }            remove { PreDrawEvent -= value; }        }        // Explicit interface implementation required.        // Associate IShape‘s event with        // PostDrawEvent        event EventHandler IShape.OnDraw        {            add { PostDrawEvent += value; }            remove { PostDrawEvent -= value; }        }        // For the sake of simplicity this one method        // implements both interfaces.         public void Draw()        {            // Raise IDrawingObject‘s event before the object is drawn.            EventHandler handler = PreDrawEvent;            if (handler != null)            {                handler(this, new EventArgs());            }            Console.WriteLine("Drawing a shape.");            // RaiseIShape‘s event after the object is drawn.            handler = PostDrawEvent;            if (handler != null)            {                handler(this, new EventArgs());            }        }    }    public class Subscriber1    {        // References the shape object as an IDrawingObject        public Subscriber1(Shape shape)        {            IDrawingObject d = (IDrawingObject)shape;            d.OnDraw += new EventHandler(d_OnDraw);        }        void d_OnDraw(object sender, EventArgs e)        {            Console.WriteLine("Sub1 receives the IDrawingObject event.");        }    }    // References the shape object as an IShape    public class Subscriber2    {        public Subscriber2(Shape shape)        {            IShape d = (IShape)shape;            d.OnDraw += new EventHandler(d_OnDraw);        }        void d_OnDraw(object sender, EventArgs e)        {            Console.WriteLine("Sub2 receives the IShape event.");        }    }    public class Program    {        static void Main(string[] args)        {            Shape shape = new Shape();            Subscriber1 sub = new Subscriber1(shape);            Subscriber2 sub2 = new Subscriber2(shape);            shape.Draw();            Console.WriteLine("Press Enter to close this window.");            Console.ReadLine();        }    }}

输出

Sub1 receives the IDrawingObject event.Drawing a shape.Sub2 receives the IShape event.

如何:使用字典存储事件实例(C# 编程指南)

accessor-declarations 的一种用法是公开大量的事件但不为每个事件分配字段,而是使用字典来存储这些事件实例。这只有在具有非常多的事件、但您预计大部分事件都不会实现时才有用。

示例

复制
public delegate void EventHandler1(int i);public delegate void EventHandler2(string s);public class PropertyEventsSample{    private System.Collections.Generic.Dictionary<string, System.Delegate> eventTable;    public PropertyEventsSample()    {        eventTable = new System.Collections.Generic.Dictionary<string, System.Delegate>();        eventTable.Add("Event1", null);        eventTable.Add("Event2", null);    }    public event EventHandler1 Event1    {        add        {            eventTable["Event1"] = (EventHandler1)eventTable["Event1"] + value;        }        remove        {            eventTable["Event1"] = (EventHandler1)eventTable["Event1"] - value;        }    }    public event EventHandler2 Event2    {        add        {            eventTable["Event2"] = (EventHandler2)eventTable["Event2"] + value;        }        remove        {            eventTable["Event2"] = (EventHandler2)eventTable["Event2"] - value;        }    }    internal void RaiseEvent1(int i)    {        EventHandler1 handler1;        if (null != (handler1 = (EventHandler1)eventTable["Event1"]))        {            handler1(i);        }    }    internal void RaiseEvent2(string s)    {        EventHandler2 handler2;        if (null != (handler2 = (EventHandler2)eventTable["Event2"]))        {            handler2(s);        }    }}public class TestClass{    public static void Delegate1Method(int i)    {        System.Console.WriteLine(i);    }    public static void Delegate2Method(string s)    {        System.Console.WriteLine(s);    }    static void Main()    {        PropertyEventsSample p = new PropertyEventsSample();        p.Event1 += new EventHandler1(TestClass.Delegate1Method);        p.Event1 += new EventHandler1(TestClass.Delegate1Method);        p.Event1 -= new EventHandler1(TestClass.Delegate1Method);        p.RaiseEvent1(2);        p.Event2 += new EventHandler2(TestClass.Delegate2Method);        p.Event2 += new EventHandler2(TestClass.Delegate2Method);        p.Event2 -= new EventHandler2(TestClass.Delegate2Method);        p.RaiseEvent2("TestString");    }}

输出

2TestString

MSDN搬运 之 [事件]