Limit Flickering On Winforms In C#
Here's the snippet to limit flicker in forms. Put it above the initialize component method in your constructor.
Cheers!
Source: mijalko
//limit flicker SetStyle(ControlStyles.OptimizedDoubleBuffer | ControlStyles.UserPaint | ControlStyles.AllPaintingInWmPaint, true); InitializeComponent();
Comments
Post a Comment