ApplicationInitialized Event |
Occurs when the application is initialized
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public event EventHandler<EventArgs> Initialized
Public Event Initialized As EventHandler(Of EventArgs)
member Initialized : IEvent<EventHandler<EventArgs>,
EventArgs>
Value
Type:
SystemEventHandlerEventArgsRemarks
This is where any of your startup code should be placed, such as creating the main form and showing it.
If subclassing Application, you can override
OnInitialized(EventArgs) instead.
See Also