使用双缓冲改善控件绘制闪烁
由 gougou 于 星期一, 2004-11-15 13:29 发表
在编写的控件的构造函数中加入下面语句即可。
//防止闪烁
this.SetStyle(ControlStyles.AllPaintingInWmPaint, true);
this.SetStyle(ControlStyles.UserPaint,true);
this.SetStyle(ControlStyles.Opaque, true);
this.SetStyle(ControlStyles.DoubleBuffer,true);