Is there a way to defer a form from updating/repainting while manipulating controls?
I am using the TableLayoutPanel
control on my form, and I want to remove/add different user controls into different cells of the table dynamically at runtime.
When I do this, the screen update is too slow, and there is some blinking action happening.
tablelayout.SuspendLayout()
SuspendLayout()
seems to have no effect.