using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Data; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using System.Threading; using log4net; using WisdomClient.data; using WisdomClient; namespace IntelligentControlForsx.MyControls.syz { public partial class syz_sbq : ZTControl { public syz_sbq() { InitializeComponent(); SetStyle(ControlStyles.UserPaint, true); SetStyle(ControlStyles.AllPaintingInWmPaint, true); // 禁止擦除背景.   SetStyle(ControlStyles.DoubleBuffer, true); // 双缓冲   this.SetStyle(ControlStyles.OptimizedDoubleBuffer, true); } private void syz_sbq_Load(object sender, EventArgs e) { } } }