Answers for "windows forms change double buffer during runtime"

0

windows forms change double buffer during runtime

public void EnableDoubleBuffering()
{
   this.SetStyle(ControlStyles.DoubleBuffer | 
      ControlStyles.UserPaint | 
      ControlStyles.AllPaintingInWmPaint,
      true);
   this.UpdateStyles();
}
Posted by: Guest on April-15-2021

Code answers related to "windows forms change double buffer during runtime"

Browse Popular Code Answers by Language