Make sure to set these flags for your panel, for e.g. in it’s constructor. You will have to derive a class from Panel if you were initially using the Panel directly.
[C#]
base.SetStyle( ControlStyles.DoubleBuffer | ControlStyles.DoubleBuffer | ControlStyles.UserPaint, true );
Share with