Standard Event Declaration C# with Example



Standard Event Declaration C# with Example

Event declaration: 
public event EventHandler EventName; 
Event handler declaration: 
public void HandlerName(object sender, EventArgsT args) { /* Handler logic */ } 
Subscribing to the event: 
Dynamically: 
EventName += HandlerName; 
Through the Designer: 
1. Click the Events button on the control's properties window (Lightening bolt) 
2. Double-click the Event name: 
3. Visual Studio will generate the event code: 
private void Form1_Load(object sender, EventArgs e) 
{ 
} 
Invoking the method: 
 

EventName(SenderObject, EventArguments); 

0 Comment's

Comment Form