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.
views:
62answers:
1
+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
2009-02-27 16:07:54