BaseFormIsLoaded Property

Gets whether the form has already been loaded. This property is after the Load event is raised for the first time, and remains even if the form is shown as a dialog multiple times or the handle is recreated (e.g. because RightToLeft changes). Can be useful if you override the OnLoad method, and you want to avoid executing some initialization more than once.

Definition

Namespace: KGySoft.WinForms.Forms
Assembly: KGySoft.WinForms (in KGySoft.WinForms.dll) Version: 5.0.1
C#
[BrowsableAttribute(false)]
protected bool IsLoaded { get; }

Property Value

Boolean

See Also