How to get rid of flickering form?
Try setting DoubleBuffered
form property to "true".
If you added any code to the Load event of the form that manipulates the UI use SuspendLayout() and ResumeLayout() to prevent flickering.
Try setting DoubleBuffered
form property to "true".
If you added any code to the Load event of the form that manipulates the UI use SuspendLayout() and ResumeLayout() to prevent flickering.