在控件或窗体初始化的时候加这段代码
[C#] 纯文本查看 复制代码
//设置自定义控件Style
this.SetStyle(ControlStyles.ResizeRedraw, true);//调整大小时重绘
this.SetStyle(ControlStyles.OptimizedDoubleBuffer, true);// 双缓冲
this.SetStyle(ControlStyles.AllPaintingInWmPaint, true);// 禁止擦除背景
this.SetStyle(ControlStyles.SupportsTransparentBackColor, true);// 背景可透明
|