Friday, September 18, 2015

Order of Events in Windows Forms

.NET Framework 4.6 and 4.5
 
The order in which events are raised in Windows Forms applications is of particular interest to developers concerned with handling each of these events in turn. When a situation calls for meticulous handling of events, such as when you are redrawing parts of the form, an awareness of the precise order in which events are raised at run time is necessary. This topic provides some details on the order of events during several important stages in the lifetime of applications and controls. For specific details about the order of mouse input events, see Mouse Events in Windows Forms. For an overview of events in Windows Forms, see Events Overview (Windows Forms). For details about the makeup of event handlers, see Event Handlers Overview (Windows Forms).

Application Startup and Shutdown Events

The Form and Control classes expose a set of events related to application startup and shutdown. When a Windows Forms application starts, the startup events of the main form are raised in the following order:
When an application closes, the shutdown events of the main form are raised in the following order:

0 comments:

Post a Comment