How to enable UI virtualization in Standard WPF ListView

“UI virtualization stores only visible items in memory but in a data-binding scenario stores the entire data structure in memory. In contrast, data virtualization stores only the data items that are visible on the screen in memory.”

“By default, UI virtualization is enabled for the ListView and ListBox controls when their list items are bound to data.”

For more info view the original MSDN source.

Leave a Comment