views:

2794

answers:

2

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?

+6  A: 
 <ListBox ScrollViewer.VerticalScrollBarVisibility="Auto" />

the default is visible

Brian Leahy
+2  A: 

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