Click here to Skip to main content
15,884,064 members
Articles / Programming Languages / C# 4.0

Understanding Events in C#

Rate me:
Please Sign up or sign in to vote.
3.80/5 (10 votes)
15 Oct 2012CPOL 36K   18   11
This article is to explain events in C# to begginers.

Introduction 

In this article let us understand events from a different perspective. We are familiar with passing data to an object from outside through constructors and public variables. How about passing statements to an object from outside? These statements are not defined inside the class. We can pass statements to a function defined inside the class by clever use of events.

Using the code

C#
public void TargetFunction(string name)
{
    MessageBox.Show("hi ");
    MessageBox.Show(name); 
} 

Consider the above code. It has two statements to show the name. What about passing the second statement from outside the class?

First let's have this function inside the class EventDemo.

C#
public class EventDemo
{   
    public void TargetFunction(string name)
    {
        MessageBox.Show("hi ");
    } 
}

Then let's declare a delegate CodeWrappingDelegate inside. 

C#
public class EventDemo
{
    public delegate void CodeWrappingDelegate(string name); 
    public void TargetFunction(string name)
    {
        MessageBox.Show("hi ");
    } 
}

Now let's use an event CodeWrapping to wrap the delegate CodeWrappingDelegate

C#
public class EventDemo
{
    public delegate void CodeWrappingDelegate(string name); 
    public event CodeWrappingDelegate CodeWrapping; 
    public void TargetFunction(string name)
    {
        MessageBox.Show("hi ");
    } 
}

Now let us call the event CodeWrapping inside the class EventDemo where we have to pass the statement from outside.

C#
public class EventDemo
{
    public delegate void CodeWrappingDelegate(string name);
    public event CodeWrappingDelegate CodeWrapping;

    public void TargetFunction(string name)
    {
        MessageBox.Show("hi ");
        if (CodeWrapping!= null)
            CodeWrapping(name);
    }
}

Now let's use this class and create an object. And create a function ContainCode() and  place the statement which we have to pass from outside.

C#
public partial class MainWindow : Window
{
    public MainWindow()
    {
        InitializeComponent();
    }
   
   
    private void ContainCode(string name)
    {
        MessageBox.Show(name);
    }

    private void Window_Loaded(object sender, RoutedEventArgs e)
    {
        EventDemo d = new EventDemo(); 
        
    }
}

Now just assign the function ContainCode() to the event.

C#
public partial class MainWindow : Window
{
    public MainWindow()
    {
        InitializeComponent();
    }
   
   
    private void ContainCode(string name)
    {
        MessageBox.Show(name);
    }

    private void Window_Loaded(object sender, RoutedEventArgs e)
    {
        EventDemo d = new EventDemo();
        d.CodeWrapping+= ContainCode;
    }
}

Now we have successfully passed the statement MessageBox.Show(name); to the class EventDemo from outside.

Now finally call the function TargetFunction<code>() in the object d.

C#
public partial class MainWindow : Window
{
    public MainWindow()
    {
        InitializeComponent();
    }
   
    private void ContainCode(string name)
    {
        MessageBox.Show(name);
    }

    private void Window_Loaded(object sender, RoutedEventArgs e)
    {
        EventDemo  d= new EventDemo();
        d.CodeWrapping+= ContainCode;
        d.TargetFunction("nivas");
    }
}

public class EventDemo
{
    public delegate void CodeWrappingDelegate(string name);
    public event CodeWrappingDelegate CodeWrapping;

    public void TargetFunction(string name)
    {
        MessageBox.Show("hi ");
        if (CodeWrapping!= null)
            CodeWrapping(name);
    }
} 

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 1 Pin
Member 955352022-Apr-14 17:59
Member 955352022-Apr-14 17:59 
GeneralMy vote of 1 Pin
Member 955352022-Apr-14 17:57
Member 955352022-Apr-14 17:57 
GeneralMy vote of 2 Pin
chait30123-Dec-13 1:24
chait30123-Dec-13 1:24 
QuestionSuperb Pin
Behnam Seidali23-Sep-13 17:40
Behnam Seidali23-Sep-13 17:40 
GeneralBe careful with events.. Pin
jgauffin22-Oct-12 3:39
jgauffin22-Oct-12 3:39 
GeneralWaaaauhhhhhh...... Pin
Nivas Maran15-Oct-12 0:23
Nivas Maran15-Oct-12 0:23 
Generalsuper Pin
varunsmani15-Oct-12 0:21
varunsmani15-Oct-12 0:21 
QuestionBetter variable names would make this much clearer! Pin
Daniel Abbatt14-Oct-12 20:44
Daniel Abbatt14-Oct-12 20:44 
GeneralMy vote of 1 Pin
j.saer13-Oct-12 8:19
j.saer13-Oct-12 8:19 
GeneralRe: My vote of 1 Pin
adriancs15-Oct-12 4:17
mvaadriancs15-Oct-12 4:17 
GeneralRe: My vote of 1 Pin
j.saer15-Oct-12 5:03
j.saer15-Oct-12 5:03 
Are you serious?

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.