using DevComponents.DotNetBar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows.Forms; namespace JwKdsV.Component { public class DoubleBufferPanelX : PanelEx { public DoubleBufferPanelX() { this.SetStyle(ControlStyles.DoubleBuffer | ControlStyles.OptimizedDoubleBuffer | ControlStyles.ResizeRedraw | ControlStyles.AllPaintingInWmPaint | ControlStyles.UserPaint | ControlStyles.SupportsTransparentBackColor, true); } } }