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

link|improve this question

feedback

3 Answers

up vote 88 down vote accepted

Simply change the panel used to host the items:

<ItemsControl ...>
    <ItemsControl.ItemsPanel>
        <ItemsPanelTemplate>
            <StackPanel Orientation="Horizontal"/>
        </ItemsPanelTemplate>
    </ItemsControl.ItemsPanel>
</ItemsControl>
link|improve this answer
Don't you need to add IsItemsHost="True" to the StackPanel ? – Thomas Levesque Jun 27 '09 at 9:56
2  
I believe that's only necessary if you're re-templating the entire control. See msdn.microsoft.com/en-us/library/… – Kent Boogaart Jun 27 '09 at 10:10
1  
Answer also holds for Silverlight – Scott Apr 23 '10 at 6:53
great answer, thanks a lot :) – Sören Feb 7 '11 at 16:22
What a great tip! – Mas Sep 6 '11 at 11:01
show 2 more comments
feedback

The top answer is good, but I couldn't get it to work with usercontrols. If you need usercontrols, this should help.

ItemsControl with Horizontal Usercontrols

My Version:

      <Window.Resources>  

        <DataTemplate x:Key="ItemTemplate2">
            <StackPanel>
                <uc:MyUserControl MinWidth="20" BorderBrush="Black" BorderThickness="0.1"></uc:MyUserControl>
            </StackPanel>
        </DataTemplate>
        <ItemsPanelTemplate x:Key="ItemsPanelTemplate1">
            <StackPanel Orientation="Horizontal" Margin="0,0,0,0"/>
        </ItemsPanelTemplate>
</Window.Resources>

<StackPanel>
<ItemsControl x:Name="list_MyControls" HorizontalAlignment="Left" Margin="0,8,0,0" VerticalAlignment="Top"
                          ItemTemplate="{StaticResource ItemTemplate2}"                 
                          ItemsPanel="{StaticResource ItemsPanelTemplate1}"/>

</StackPanel>

To bind to data, you will need to add an ItemsSource to the ItemsControl in the XAML or code behind. Also note that uc: would be the xmlns:uc="NamespaceOfMyControl" declared at the top of the file.

link|improve this answer
feedback

this is actually not going to work in many situations.

using a stackpanel means the contents won't stretch to fill the space.

you then have to set a fixed width on anything in the itemtemplate.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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