using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows.Forms; namespace JwKdsV.Component { public class DoubleBufferTableLayoutPanel : TableLayoutPanel { public DoubleBufferTableLayoutPanel() { this.SetStyle(ControlStyles.DoubleBuffer | ControlStyles.OptimizedDoubleBuffer | ControlStyles.ResizeRedraw | ControlStyles.AllPaintingInWmPaint | ControlStyles.UserPaint | ControlStyles.SupportsTransparentBackColor, true); this.GetType().GetProperty("DoubleBuffered", System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic).SetValue(this, true, null); } } }