Flicker Free Listview
-
Can someone help me with a flicker free listview. I have tried setting the control styles but that doesnt seem to work. And when i set the control style UserPaint to true only the columns of the listview are painted. I guess this is because we are then responsible for all the painting. However, I dont want to go through all of that. Does someone know of another way to do this.
-
Can someone help me with a flicker free listview. I have tried setting the control styles but that doesnt seem to work. And when i set the control style UserPaint to true only the columns of the listview are painted. I guess this is because we are then responsible for all the painting. However, I dont want to go through all of that. Does someone know of another way to do this.
-
I had a similar problem a while back. Make sure that: 1. the control dont get invalidated after adding each item 2. you are not adding new items using AddRange() within a loop. Hope this helps
So should i be using the style controls?