views:

936

answers:

3

In our current WinForms app, we are displaying millions of records in ListView, using virtualization. Rows are loaded from DB as they are requested. This works well, with good performance.

This is a showstopper for migrating to WPF for us. We need data virtualization in a ListView, like WinForms 2.0 has.

Do you know a decent third-party control, or a relatively easy way of doing it with built-in controls? It doesn't need to be a DataGrid, a simple ListView will suffice.

Note, I'm note talking about UI virtualization, it's data virtualization.

+1  A: 

Xceed DataGrid for WPF has data virtualization support.

Samuel Jack
+2  A: 

Hi, the article WPF Data Virtualization should be exactly what you are looking for, I just implemented it quite easily, and it works.

Martin Konicek
A: 

Take a look at my blog post: http://www.devzest.com/blog/post/WPF-Data-Virtualization.aspx

Weifen Luo