Click here to Skip to main content
15,867,568 members
Articles / Programming Languages / C#

Step by Step: Event handling in C#

Rate me:
Please Sign up or sign in to vote.
4.85/5 (68 votes)
22 Sep 2003Public Domain3 min read 416.5K   167   34
Step by Step guide to implement event handling in C#.

Introduction

In this step by step article, we look at implementing event handling in C#.

Implementing Events

Step 1 - Create an EventArgs Class

If you need to pass arguments to the event handler, a specific EventArgs class has to be made. Eventually, a suitable EventArgs class might already be available, but in most cases, you will have to create one to tailor your specific arguments.

If you do not need to pass arguments to the event handler (except the 'sender'), then no subclass of EventArgs is needed. However, note that you should still define the event method with an argument of type System.EventArgs, and then pass System.EventArgs.Empty.

Create the EventArgs subclass as follows:

C#
public class StartEventArgs : System.EventArgs {
    // Provide one or more constructors, as well as fields and
    // accessors for the arguments.
}

Note: All EventArgs classes should have a name ending on 'EventArgs'.

Step 2 - Create a Delegate

For each EventArgs subclass you have created, a matching delegate should be created. Best practice is to declare the EventArgs subclass and the delegate in the same scope (inside the same namespace or inside the same class). A delegate declaration looks pretty much like a method declaration, but in fact, when declaring a delegate, you create a new class, so placing a delegate declaration directly in a namespace is no problem.

When you use the default System.EventArgs class instead of a subclass of it, there is no need to declare a delegate, you can use the System.EventHandler delegate.

You might also decide to create a specific EventArgs subclass, but no delegate for it. In that case, the event will be declared of type System.EventHandler (or any superclass of your specific EventArgs subclass for which a delegate is available) and casting of the EventArgs argument in the eventhandler method will be needed.

Declare a delegate as follows:

C#
public delegate void StartEventHandler(object sender, StartEventArgs e);

Note: All delegate classes used for event handling should have a name ending on 'EventHandler' and should be of type void. (Delegates that are not of type void are not suitable for multicasting and therefore not suitable for event handling.)

Step 3 - Create Events

For each kind of event, an Event is created in the sending class. The event is declared as of type its delegate. Multiple events can use the same delegate (think of the delegate as a class, and an event as an instance of it):

C#
public class Sender {

    public event StartEventHandler BeforeStart;
    public event StartEventHandler AfterStart;

    //...

}

Step 4 - Create OnEvent Methods

Although not required, it is a good convention to create protected virtual OnEvent methods for your events:

C#
protected virtual void OnBeforeStart(StartEventArgs e) {
    if (BeforeStart != null) BeforeStart(this, e);
}

protected virtual void OnAfterStart(StartEventArgs e) {
    if (AfterStart != null) AfterStart(this, e);
}

You can now call this method whenever you want to send the Start event, i.e.:

C#
OnBeforeStart(new StartEventArgs());

Step 5 - Make the Event Default

When your class represents a component, it is good practice to make the most commonly used event the default event. Add a DefaultEvent attribute in front of your sender class:

C#
[System.ComponentModel.DefaultEvent("BeforeStart")]
public class Sender : System.ComponentModel.Component {
    //...

Handling Events

Add a handler to an event, use the (overloaded) += assignment operator, as in:

C#
sender.BeforeStart += new StartEventHandler(this.sender_BeforeStart);

To remove the handler, use the (overloaded) -= assignment operator:

C#
sender.BeforeStart -= new StartEventHandler(this.sender_BeforeStart);

It might look strange to remove a newly created object. In reality, when you remove a handler, the .NET Framework will look for a handler using the same handler method, and remove that handler. The newly created object is then garbage collected.

Here, sender_BeforeStart is the method that will handle the event. It looks like:

C#
private void sender_BeforeStart(object sender, StartEventArgs e) {
    //...
}

VS.NET generates the handler methodnames by using the fieldname of the sender object (the name of the variable sending events), and concatenates to it an underscore followed by the name of the event. It is good practice to follow this convention whenever you are handling events of objects that are declared as fields on your class. In other situations, you are free to choose any arbitrary methodname, however avoid names starting by 'On' (to avoid confusion with event sending methods); when in lack of inspiration, we suggest methods starting with 'Handle' (i.e., HandleBeforeStart).

Code Sample

C#
public delegate void StartEventHandler(object sender, StartEventArgs e);

public class StartEventArgs : System.EventArgs {
    // Provide one or more constructors, as well as fields and
    // accessors for the arguments.
}

public class Sender {

    public event StartEventHandler BeforeStart;
    public event StartEventHandler AfterStart;

    protected virtual void OnBeforeStart(StartEventArgs e) {
        if (BeforeStart != null) BeforeStart(this, e);
    }

    protected virtual void OnAfterStart(StartEventArgs e) {
        if (AfterStart != null) AfterStart(this, e);
    }

    void DoStart() {
        OnBeforeStart(new StartEventArgs());
        //...
        OnAfterStart(new StartEventArgs());
    }

    //...

}

public class Receiver {
    
    Sender sender;

    public Receiver() {
        sender = new Sender();
    }

    void Connect() {
        sender.BeforeStart += new StartEventHandler(this.sender_BeforeStart);
    }

    private void sender_BeforeStart(object sender, StartEventArgs e) {
        //...
    }

    //...

}

History

  • 23rd September, 2003: Initial version

License

This article, along with any associated source code and files, is licensed under A Public Domain dedication


Written By
Architect AREBIS
Belgium Belgium
Senior Software Architect and independent consultant.

Comments and Discussions

 
GeneralMy vote of 5 Pin
qiubo22-Oct-12 18:45
qiubo22-Oct-12 18:45 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.