Delay when resizing forms? - WITH#

Hey, I notice that when I resize any shapes in my programs, they always fall behind, like hell, does anyone know how to prevent this, just not waiting until I finish resizing before it moves everything?

+3
source share
1 answer

Try using

this.SuspendLayout();

and

this.ResumeLayout(false);
+5
source

All Articles