WPF Data virtualizing ListView
Posted
by Robert Jeppesen
on Stack Overflow
See other posts from Stack Overflow
or by Robert Jeppesen
Published on 2009-06-11T13:23:15Z
Indexed on
2010/04/12
8:43 UTC
Read the original article
Hit count: 419
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.
© Stack Overflow or respective owner