when part of user controls logic and part of form's logic need to be executed at one shot then user defined events are requiredUser Defined events are also called as "Call Back procedure"User Defined events works with the help of "Delegates"
Steps to develop user Defined EventsStep1:Create a Delegatesyntax : public delegate void Delegatename(); step2)create an event with the help of Delegatesyntax:public event delegatename Eventname; step3)paise the event syntax : eventname(); step4)define the even...
No comments yet, be the first one to post comment.