Prepare for your Next Interview
|
Welcome to the Geeks Talk forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact contact us. |
This is a discussion on .net c# help within the C# forums, part of the Software Development category; i am new bee to .net please anybody tell me exact fuction of "object sender and eventargs e" during button click........ private void button1_Click(object sender, EventArgs e)...
|
|||||||
|
|||
|
.net c# help
i am new bee to .net
please anybody tell me exact fuction of "object sender and eventargs e" during button click........ private void button1_Click(object sender, EventArgs e) |
| Sponsored Links |
|
|||
|
Re: .net c# help
private void button1_Click(object sender, EventArgs e)
Here sender is the one which contains the details who has invoked this button1_click event.here button1 is the object which invoked the event and EventArgs contains data which needed to handle the event. |
| The Following User Says Thank You to shilpa.c For This Useful Post: | ||
![]() |
|
| Thread Tools | |
| Display Modes | |
|
|