PB ListView flickers on Windows XP

来源:互联网 发布:chart.js饼状图百分比 编辑:程序博客网 时间:2024/04/29 00:50

pb listview control flickers on windows xp when resizing .

set listview extended style to LVS_EX_DOUBLEBUFFER could solve it.

in the constructor of listview,add scripts:

//LVM_FIRST = 4096
//LVM_SETEXTENDEDLISTVIEWSTYLE = (LVM_FIRST + 54)
//LVS_EX_DOUBLEBUFFER    = 65536
//

Send(handle(this), 4096+54, 65536, 65536)



done.

原创粉丝点击