Tagged Questions

4
votes
1answer
228 views

Does Visibility = IsCollapsed skip the data-binding part?

If I set a StackPanel or what ever bound area I have as 'Collapsed', does the data load? Will it trigger its Loaded event?
2
votes
1answer
360 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 ...