How can i set the protected DoubleBuffered property of the controls on a form that are suffering from flicker?
|
8
|
|
|
|
|
|
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.
|
||||||||
|
|
|
Ian has some more information about using this on a terminal server. |
||||
|
|
|
|
||
|
|
|
|
Before you try double buffering, see if SuspendLayout()/ResumeLayout() solve your problem. |
||||
|
|
|
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:
|
||
|
|
|
|
Check this thread |
||||||||
|
|
|
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. |
||
|
|
|
|
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 :-) |
||
|
|
|
|
nobugz gets the credit for the method in his link, I'm just reposting. Add this override to the Form:
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. |
||
|
|
|
|
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...
|
||
|
|
