How can I set the protected DoubleBuffered property of the controls on a form that are suffering from flicker?
DoubleBuffered
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; } }