C# – ItemsControl with horizontal orientation

cwpfwpf-controls

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

Best Answer

Simply change the panel used to host the items:

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