articles

Home / DeveloperSection / Articles / Event Handling in CSharp .NET

Event Handling in CSharp .NET

Anonymous User4331 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;
        }
 

 


Updated 04-Mar-2020
I am a content writter !

Leave Comment

Comments

Liked By