Click here to Skip to main content
15,896,111 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hii i'm beginner


C#
protected void Button_Click(object sender, EventArgs e)
{
Button btn = (Button)sender;
btn.Text = (Int32.Parse(btn.Text) + 1).ToString();

}
Posted
Updated 18-Sep-20 22:19pm

1 solution

sender refers to the object that invoked the event that fired the event handler. This is useful if you have many objects using the same event handler.


Here the "Button_Click" function should be called on the click of a button , hence you are tracking the button click event.

//Button btn = (Button)sender;

as sender is the button , you are creating a object of the same button class and typecasting the button object and assigning to a local object, then accessing it's properties.


This is useful if you have many objects using the same event handler.
 
Share this answer
 

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900