强制设置双缓冲DoubleBuffered 解决tableLayoutPanel 闪烁

tableLayoutPanel.GetType().GetProperty("DoubleBuffered",

  System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic)

  .SetValue(tableLayoutPanel, true, null);

原文地址:https://www.cnblogs.com/leavind/p/6994084.html