Click or drag to resize

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

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