Creating Event Handlers in Windows Forms

An event handler is a procedure in your code that determines what actions are performed when an event occurs, such as when the user clicks a button or a message queue receives a message. When an event is raised, the event handler or handlers that receive the event are executed. Events can be assigned to multiple handlers, and the methods that handle particular events can be changed dynamically. You can also use the Windows Forms Designer in Visual Studio to create event handlers.

In This Section

Events Overview
Explains the event model and the role of delegates.

Event Handlers Overview
Describes how to handle events.

How to: Create Event Handlers at Run Time for Windows Forms
Gives directions for responding to system or user events dynamically.

How to: Connect Multiple Events to a Single Event Handler in Windows Forms
Gives directions for assigning the same functionality to multiple controls through events.

Order of Events in Windows Forms
Describes the order in which events are raised in Windows Forms controls.

How to: Create Event Handlers Using the Designer Describes how to use the Windows Forms Designer to create event handlers.

Events
Provides links to topics on handling and raising events using the .NET Framework.

Troubleshooting Inherited Event Handlers in Visual Basic
Lists common issues that occur with event handlers in inherited components.