This seems to be an absurdly simple question but Google and SO searches yield nothing. How can I disable horizontal scrolling in a WPF listbox when items take up more horizontal space than is available in the box?

link|improve this question

feedback

1 Answer

up vote 60 down vote accepted

In XAML:

<ListBox ScrollViewer.HorizontalScrollBarVisibility="Disabled" />

In C#:

myListBox.SetValue(ScrollViewer.HorizontalScrollBarVisibilityProperty, ScrollBarVisibility.Disabled);
link|improve this answer
thanks, you made my day! – Cshift3iLike Dec 12 '09 at 2:14
This bit me in the A again :) thanks. – Gishu Jul 26 '11 at 5:53
Yeah. I was looking for a solution few hours ... – BitKFu Mar 26 at 5:51
feedback

Your Answer

 
or
required, but never shown

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