tags:

views:

62

answers:

1

I have a ItemsControl and I will like the items to uniformly fill the the control. Using a StackPanel as the ItemsPanelTemplate only stretches in one direction.

+2  A: 

What you actually want is a Panel that uniformly fills. Try the UniformGrid panel:

<ItemsControl>
    <ItemsControl.ItemsPanel>
        <ItemsControl.ItemsPanelTemplate>
            <UniformGrid/>
        </ItemsControl.ItemsPanelTemplate>
    </ItemsControl.ItemsPanel>
</ItemsControl>

HTH, Kent

Kent Boogaart