Reputation: 5161
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
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