Method ResumeLayout
ResumeLayout(bool)
Resumes the usual layout logic.
public virtual void ResumeLayout(bool performLayout = true)
Parameters
performLayout
booltrue
to execute pending layout requests; otherwise,false
.
Remarks
Resumes the usual layout logic after SuspendLayout() has
been called.
When the performLayout
parameter is set to true
,
an immediate layout occurs.
The SuspendLayout() and ResumeLayout(bool) methods are used in tandem to suppress multiple layouts while you adjust multiple attributes of the control. For example, you would typically call the SuspendLayout() method, then set some properties of the control, or add child controls to it, and then call the ResumeLayout(bool) method to enable the changes to take effect.