jyoung
jyoung

Reputation: 5161

Is there ItemsPanelTemplate that will make the Items uniformly fill the control?

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.

Upvotes: 0

Views: 130

Answers (1)

Kent Boogaart
Kent Boogaart

Reputation: 178660

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>

Upvotes: 3

Related Questions