I want to make ListBox arrange its items horizontally instead of vertically. How it is possible in WPF?
Answer Posted / Ashish Suman
You can make a ListBox display items horizontally by setting the Orientation property to Horizontal:
```xaml
<ListBox Orientation="Horizontal" ItemsSource="{Binding MyItems}">
<!-- ... -->
</ListBox>
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
No New Questions to Answer in this Category !! You can
Post New Questions
Answer Questions in Different Category