Do you know any controls inherited from the ItemsControl that have horizontal orientation of items?
Do you know any controls inherited from the ItemsControl that have horizontal orientation of items?
Simply change the panel used to host the items:
<ItemsControl ...>
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal"/>
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
</ItemsControl>
For a long list with hundreds or even thousands of items, you should better use VirtualizingStackPanel to avoid performance issues.