i am facing a problem.
i have a list view which is in detail form..
it has large quantity of data to display. and the data is continuously updating after each second.
in current situation list view is flickering. how can i solve this issue
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use a
FastObjectListViewfrom the ObjectListView project — a wrapper around the .NET WinForms ListView control. The fast version is a virtual list that uses double buffering to give flicker free updates.I’ve used it for listviews with more than 50,000 objects and the update time is less than 0.5 seconds (on a mid-range laptop).
BUT even with almost instant updates, your users are going to have a hard time using a control that changes its contents every seconds.