Say I have something like this code
<ItemsControl ItemsSource="{Binding Blabla}">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<UniformGrid Rows="8" Columns="8"></UniformGrid>
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
<ItemsControl.ItemTemplate>
<Data Template>
<Button Command="{Binding blablaComamnd}"></Button>
</DataTemplate>
From what I understand, the uniformgrid will display 64 buttons in a wrap-panel like order to the blabla command of the object inside the blalbla data structure.
Is there a way to specify which item goes to which coordinates in the grid such as based ideally on Binding found in the blabla
object?