Click or drag to resize

ControlLoaded Property

Gets a value indicating that the control is loaded onto a form, that is it has been created, added to a parent, and shown

Namespace:  Eto.Forms
Assembly:  Eto (in Eto.dll) Version: 2.5.3-dev
Syntax
public bool Loaded { get; }

Property Value

Type: Boolean
Remarks
The OnLoad(EventArgs) method sets this value to true after cascading to all children (for a Container) and calling the platform handler's implementation. It is called after adding to a loaded form, or when showing a new form. The OnUnLoad(EventArgs) method will set this value to false when the control is removed from its parent
See Also