ControlSuspendLayout Method |
Suspends the layout of child controls
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public virtual void SuspendLayout()
Public Overridable Sub SuspendLayout
abstract SuspendLayout : unit -> unit
override SuspendLayout : unit -> unit
Remarks
This can be used to optimize some platforms while adding, removing, or changing many child controls at once.
It disables the calculation of control positioning until
ResumeLayout is called.
Each call to SuspendLayout() must be balanced with a call to
ResumeLayout.
See Also