65.9K
CodeProject is changing. Read more.
Home

Flicker free Form Painting

starIconstarIconstarIconstarIcon
emptyStarIcon
starIcon

4.50/5 (3 votes)

Sep 29, 2010

CPOL
viewsIcon

8031

Instead I would use double buffering. Just use the linethis.SetStyle(ControlStyles.AllPaintingInWmPaint |ControlStyles.UserPaint | ControlStyles.DoubleBuffer, true);There is a nice article on double buffering Win Forms here[^].

Instead I would use double buffering. Just use the line
this.SetStyle(ControlStyles.AllPaintingInWmPaint |ControlStyles.UserPaint | ControlStyles.DoubleBuffer, true);
There is a nice article on double buffering Win Forms here[^].