Forcing a ListView to draw in the background - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T12:45:51Z http://stackoverflow.com/feeds/question/131448 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/131448/forcing-a-listview-to-draw-in-the-background 1 Forcing a ListView to draw in the background Merus 2008-09-25T04:14:00Z 2008-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#131458 7 Answer by Alexander Kojevnikov for Forcing a ListView to draw in the background Alexander Kojevnikov 2008-09-25T04:20:39Z 2008-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#131496 0 Answer by Jack B Nimble for Forcing a ListView to draw in the background Jack B Nimble 2008-09-25T04:35:38Z 2008-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 &lt; 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>