vote up 0 vote down star
1

I have a ListBox which displays items of variable height. I want to show as many items as will fit in the available space, without showing a vertical scrollbar. Other than surgery on the ListBox item template, is there a way to only show the number of items which will fit without scrolling?

flag

Does Silverlight not have ScrollViewer.VerticalScrollbarVisibility, Jon? – Matt Hamilton Oct 7 '08 at 23:06
Apparently it does. ;) – Matt Hamilton Oct 7 '08 at 23:33
Matt, I wish you'd added that as an answer so I could have voted for you... – Jon Galloway Oct 9 '08 at 15:34

2 Answers

vote up 3 vote down check
 <ListBox ScrollViewer.VerticalScrollBarVisibility="Auto" />

the default is visible

link|flag
vote up 0 vote down

I don't think the default is "Visible". I think it's "Auto". Jon wanted to set it to "Hidden".

link|flag

Your Answer

Get an OpenID
or

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