vote up 0 vote down star

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 the ListView seems to be reserving the space even when collapsed - it disappears but the ScrollViewer doesn't accordingly resize.

Anything I am missing?

Any Help appreciated

flag

3 Answers

vote up 0 vote down check

Thanks to everyone for their answers - I found out that a globally applied style was causing the problem! Solved now.

link|flag
vote up 0 vote down

Possible reason could be that ScrollViewer by default shows its vertical ScrollBar. Try to set ScrollViewer.VerticalScrollBarVisibility to auto. You can write something like this:

<ListBox ScrollViewer.VerticalScrollBarVisibility="Auto" />

I hope it helps.

link|flag
vote up 0 vote down

This is very odd. Best advice I can give is run down the VisualTree and try find out if everything is Collapsing and and not simply being "Hidden".

In particular, check the ScrollViewer, definately seems to be where the odd behaviour begins.

link|flag
I am not explicitly setting the ScrollViewer width so I'd expect it to shrink as child elements collapse. Odd. – JohnIdol Aug 21 at 12:20
Yea it is very odd. This is the reason Collapsed and Hidden exist separately. Hehe. Perhaps set some dependencies on the ScrollViewer to inherit width, height and visibility from the ListView? – Kyle Rozendo Aug 21 at 13:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.