articles

home / developersection / articles / event handling in csharp .net

Event Handling in CSharp .NET

Anonymous User 4641 17-Jul-2010

Here I am going to show how to handle events.

Timer tick event
//adding tick event to timer
tm.Tick += new EventHandler(tm_Tick);3
     //code for timer tick event.
private void tm_Tick(object sender, EventArgs e)
        {
            this.BackColor = Color.Blue;
            tm.Enabled= false;
        }
 

 


c# c# 
Updated 04-Mar-2020

I am a content writter !


Message

Leave Comment

Comments

Liked By