5

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?

Mark Ingram
  • 71,849
  • 51
  • 176
  • 230
Jon Galloway
  • 52,327
  • 25
  • 125
  • 193

2 Answers2

13
 <ListBox ScrollViewer.VerticalScrollBarVisibility="Auto" /> 

the default is visible

Brian Leahy
  • 34,677
  • 12
  • 45
  • 60
3

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