I am reading up about SuspendLayout() and ResumeLayout(). What I can\'t figure out is, why should I do/use this. I know you use it when you add con
SuspendLayout()
ResumeLayout()
Basically it's if you want to adjust multiple layout-related properties - or add multiple children - but avoid the layout system repeatedly reacting to your changes. You want it to only perform the layout at the very end, when everything's "ready".