ApplicationInitialized Event |
Occurs when the application is initialized
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntaxpublic event EventHandler<EventArgs> Initialized
Public Event Initialized As EventHandler(Of EventArgs)
member Initialized : IEvent<EventHandler<EventArgs>,
EventArgs>
Value
Type:
SystemEventHandlerEventArgs
Remarks
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