Tagged Questions
2
votes
1answer
362 views
ListView, ListViewItems and Virtualization
I have a problem with the UI virtualization of an ListView with hundreds of elements which items can expose an Visibility property.
Unfortunately the virtualization not recognizes the visibility ...
0
votes
2answers
318 views
WPF ListView still reserving space when collapsed
I have a WPF ListView within a ScrollViewer.
I need to collapse the ListView and I am trying withthis code (pretty striaghtoforward):
this.myListView.Visibility = Visibility.Collapsed;
Problem is ...