ItemsControl with horizontal orientation

c#, wpf, wpf-controls

Solution

Simply change the panel used to host the items:

<ItemsControl ...>
    <ItemsControl.ItemsPanel>
        <ItemsPanelTemplate>
            <StackPanel Orientation="Horizontal"/>
        </ItemsPanelTemplate>
    </ItemsControl.ItemsPanel>
</ItemsControl>

Problem

Do you know any controls inherited from the ItemsControl that have horizontal orientation of items?

Original source