Winfrom 减少控件重绘闪烁的方法
程序员文章站
2023-01-26 20:11:48
Winform控件的双缓冲。控件的双缓冲属性是隐藏的,可以通过反射改变其属性值。 lv.GetType().GetProperty("DoubleBuffered", BindingFlags.Instance | BindingFlags.NonPublic).SetValue(lv, true, ......
- winform控件的双缓冲。控件的双缓冲属性是隐藏的,可以通过反射改变其属性值。
lv.gettype().getproperty("doublebuffered", bindingflags.instance | bindingflags.nonpublic).setvalue(lv, true, null);
//lv为控件名称 - 重绘控件的时候开启控件双缓冲。
this.setstyle(controlstyles.doublebuffer | controlstyles.userpaint | controlstyles.allpaintinginwmpaint, true); this.updatestyles();
- 通过消息,禁用掉清除背景的消息。(treeview控件实用)
protected override void wndproc(ref message m) { if (m.msg == 0x0014) // 禁掉清除背景消息 return; base.wndproc(ref m); }