How do i enable double-buffering of a control using C# (Window forms)?
I have a panelcontrol which i am drawing stuff into and also an owner drawn tabcontrol. Both suffer from flicker, so how to enable double-buffering?
|
2
|
How do i enable double-buffering of a control using C# (Window forms)? I have a panelcontrol which i am drawing stuff into and also an owner drawn tabcontrol. Both suffer from flicker, so how to enable double-buffering?
|
|||
|
|
|
|
In the constructor of your control, set the DoubleBuffered property, and/or ControlStyle appropriately. For example, I have a simple DoubleBufferedPanel whose constructor is the following:
|
||
|
|
|
some info here: |
||
|
|
|
|
Use the DoubleBuffered property, inherited from the System.Windows.Forms.Control.
|
||
|
|