ApplicationOnInitialized Method |
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax protected virtual void OnInitialized(
EventArgs e
)
Protected Overridable Sub OnInitialized (
e As EventArgs
)
abstract OnInitialized :
e : EventArgs -> unit
override OnInitialized :
e : EventArgs -> unit
Parameters
- e
- Type: SystemEventArgs
Event arguments.
Remarks
This is where any of your startup code should be placed, such as creating the main form and showing it.
If you are not subclassing Application, you can handle the
Initialized event instead.
See Also