I’m getting confusion. I’m set :
this.listView1.Enabled = false;
when i make do that listview’s scroll bars are disabled, too. I want to see all listviewitems in listview with scroll bars when listview disabled. Please give me some advices. Thanks.
After a lot of comments, I’m assuming your listview, because of is updated often from many different threads, is flickering.
If so, one possible solution is to enable DoubleBuffering; this property anyway is
protectedso accessible only from descendant classes.So you could:
This could solve your problem.
The idea is taken from this post on SO.