浅谈C# winForm 窗体闪烁的问题
程序员文章站
2022-04-21 08:33:18
在构造函数里加上以下代码:
this.doublebuffered = true;//设置本窗体
setstyle(controlstyles.userpa...
在构造函数里加上以下代码:
this.doublebuffered = true;//设置本窗体 setstyle(controlstyles.userpaint, true); setstyle(controlstyles.allpaintinginwmpaint, true); // 禁止擦除背景. setstyle(controlstyles.doublebuffer, true); // 双缓冲 //setstyle(controlstyles.doublebuffer | controlstyles.optimizeddoublebuffer | controlstyles.allpaintinginwmpaint, true); //updatestyles();
以上这篇浅谈c# winform 窗体闪烁的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。