| 1234567891011121314151617 | using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Windows.Forms;namespace WCS_Client.From{    public class MyTableLayoutPanel : TableLayoutPanel    {        public MyTableLayoutPanel()        {            SetStyle(ControlStyles.UserPaint | ControlStyles.AllPaintingInWmPaint | ControlStyles.OptimizedDoubleBuffer | ControlStyles.ResizeRedraw | ControlStyles.SupportsTransparentBackColor, true);        }    }}
 |