vote up 6 vote down star
8

How can i set the protected DoubleBuffered property of the controls on a form that are suffering from flicker?

flag

56% accept rate

10 Answers

vote up 11 vote down check

Here's a more generic version of Dummy's solution.

We can use reflection to get at the protected DoubleBuffered property, and then it can be set to true.

Note: You should pay your developer taxes and not use double-buffering if the user is running in a terminal services session (e.g. Remote Desktop) This helper method will not turn on double buffering if the person is running in remote desktop.

public static void SetDoubleBuffered(System.Windows.Forms.Control c)
{
   //Taxes: Remote Desktop Connection and painting
   //http://blogs.msdn.com/oldnewthing/archive/2006/01/03/508694.aspx
   if (System.Windows.Forms.SystemInformation.TerminalServerSession)
      return;

   System.Reflection.PropertyInfo aProp = 
         typeof(System.Windows.Forms.Control).GetProperty(
               "DoubleBuffered", 
               System.Reflection.BindingFlags.NonPublic | 
               System.Reflection.BindingFlags.Instance);

   aProp.SetValue(c, true, null); 
}
link|flag
This code solved my problem without any modification. Thanks! – Mykroft Apr 24 at 15:18
Funny, I'd think that it's even more important to double-buffer when remoting, so that you avoid needlessly sending a bunch of repaints over the wire? – Robert Jeppesen Jun 11 at 14:50
It's exactly what you don't want. In a terminal session the GDI system can send commands (draw line here, draw circle here, fill here, etc). Double buffering is accomplished by you drawing everyting onto a bitmap and then using GDI to paint your entire form as a bitmap. Sending an uncompressed bitmap over the wire is MUCH slower than sending the origianl GDI commands. – Ian Boyd Jun 12 at 18:50
Doesn't help prevent an auto-sized TextBox from flickering on resize... In fact nothing I have tried so far does. – romkyns Aug 26 at 8:57
vote up 8 vote down
System.Reflection.PropertyInfo aProp = typeof(System.Windows.Forms.Control)
    .GetProperty("DoubleBuffered", System.Reflection.BindingFlags.NonPublic |
    System.Reflection.BindingFlags.Instance);
aProp.SetValue(ListView1, true, null);

Ian has some more information about using this on a terminal server.

link|flag
This does the trick. i made it a generic helper function and posted it here. – Ian Boyd Sep 17 '08 at 14:23
It's not really for on a terminal server, since none of my customers run the software from a remote desktop session. But you should pay your developer taxes, and i didn't want to put out code that didn't already include the taxes. – Ian Boyd Sep 19 '08 at 19:38
vote up 6 vote down
public void EnableDoubleBuffering()
{
   this.SetStyle(ControlStyles.DoubleBuffer | 
      ControlStyles.UserPaint | 
      ControlStyles.AllPaintingInWmPaint,
      true);
   this.UpdateStyles();
}
link|flag
vote up 4 vote down

Before you try double buffering, see if SuspendLayout()/ResumeLayout() solve your problem.

link|flag
1  
Suspend/ResumeLayout doesn't solve the problem of flicker when painting. – Ian Boyd Oct 29 at 17:20
vote up 2 vote down

One way is to extend the specific control you want to double buffer and set the DoubleBuffered property inside the control's ctor.

For instance:

class Foo : Panel
{
    public Foo() { DoubleBuffered = true; }
}
link|flag
vote up 2 vote down

Check this thread

link|flag
Wow...talk about night and day; huge difference for me using this method. – Lurker Indeed Oct 22 '08 at 23:49
1  
404-ED . – boris callens Aug 17 at 14:57
Typical MSFT lossage. Link updated. – nobugz Aug 19 at 13:11
vote up 1 vote down

You can also inherit the controls into your own classes, and set the property in there. This method is also nice if you tend to be doing a lot of set up that is the same on all of the controls.

link|flag
vote up 0 vote down

I have found that simply setting the DoubleBuffered setting on the form automatically sets all the properties listed here.

However; I have found the double buffering provided by winforms to be less than great. This little gem of a code snippet really makes a difference, seriously try it. I spent a long time looking for a solution that worked and finally found that :-)

link|flag
vote up 0 vote down

nobugz gets the credit for the method in his link, I'm just reposting. Add this override to the Form:

protected override CreateParams CreateParams
{
    get
    {
    	CreateParams cp = base.CreateParams;
    	cp.ExStyle |= 0x02000000;
    	return cp;
    }
}

This worked best for me, on Windows 7 I was getting large black blocks appearing when I resize a control heavy form. The control now bounce instead! But it's better.

link|flag
vote up 0 vote down

Just cut and pasted this and it worked great for one my custom controls which is movable, doesnt flicker at all. But I have a second control which has a gridview and including this code makes it not displcay correctly. ie most lines in grid not drawn, and text/looks almost like is low res?! Any ideas out there way worked great for one and not the other...

protected override CreateParams CreateParams
{    
  get    
    {        
      CreateParams cp = base.CreateParams;        
      cp.ExStyle |= 0x02000000;        
      return cp;    
    }
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.