Forcing a ListView to draw in the background - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T12:45:51Zhttp://stackoverflow.com/feeds/question/131448http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/131448/forcing-a-listview-to-draw-in-the-background1Forcing a ListView to draw in the backgroundMerus2008-09-25T04:14:00Z2008-09-25T04:35:38Z
<p>I have a ListView which sometimes I need to put around 10000 items in. ListViews don't really handle this well, and they lock up for a couple of seconds while they sort the items and draw them. If you add the items in individually, it's even worse, locking up for nearly a minute.</p>
<p>To get around this, I thought I'd try populating the ListView before I need to display it, but unfortunately it has other ideas. It only starts drawing when I turn the panel that contains the ListView visible, making the program hang for a couple of seconds.</p>
<p>Any ideas for how I can eliminate this delay? Or is there another component that's relatively easy to use that is better at showing large quantities of data?</p>
http://stackoverflow.com/questions/131448/forcing-a-listview-to-draw-in-the-background/131458#1314587Answer by Alexander Kojevnikov for Forcing a ListView to draw in the backgroundAlexander Kojevnikov2008-09-25T04:20:39Z2008-09-25T04:20:39Z<p>You need to use the <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.listview.virtualmode.aspx" rel="nofollow">VirtualMode</a>.</p>
http://stackoverflow.com/questions/131448/forcing-a-listview-to-draw-in-the-background/131496#1314960Answer by Jack B Nimble for Forcing a ListView to draw in the backgroundJack B Nimble2008-09-25T04:35:38Z2008-09-25T04:35:38Z<p>Well. If you just want to load the content in the background you could try a thread to populate the ListView, which will let the form load. </p>
<p>I don't think you will get the pause if you put an Application.DoEvents(); when you are loading the items (which allows the form to redraw and receive events). </p>
<pre><code>for (int ix=0; ix < 10000; ix ++)
{
listView1.Items.Add(ix.ToString());
Application.DoEvents();
}
</code></pre>
<p>I guess my suggestions are good if you aren't aware of VirtualMode </p>