Occurs when the control is displayed on a visible window
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public event EventHandler<EventArgs> Load
Public Event Load As EventHandler(Of EventArgs)
member Load : IEvent<EventHandler<EventArgs>,
EventArgs>
Value
Type:
SystemEventHandlerEventArgsRemarks
A control is loaded when it is part of the control hierarchy and is shown on a window.
When the control is removed from the hierarchy, or the window is closed, the
UnLoad event
will be called.
See Also