Click here to Skip to main content
Click here to Skip to main content

Understanding Events in C#

By , 15 Oct 2012
 

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

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.

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

Then let's declare a delegate CodeWrappingDelegate inside. 

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

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.

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.

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.

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() in the object d.

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)

About the Author

johnyroyan
United States United States
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralBe careful with events..memberjgauffin22 Oct '12 - 3:39 
GeneralWaaaauhhhhhh......memberNivas Maran15 Oct '12 - 0:23 
Generalsupermembervarunsmani15 Oct '12 - 0:21 
QuestionBetter variable names would make this much clearer!memberDaniel Abbatt14 Oct '12 - 20:44 
GeneralMy vote of 1memberMember 2254313 Oct '12 - 8:19 
GeneralRe: My vote of 1memberadriancs15 Oct '12 - 4:17 
GeneralRe: My vote of 1memberMember 2254315 Oct '12 - 5:03 

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

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 15 Oct 2012
Article Copyright 2012 by johnyroyan
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid