Created UserControl using the MahApps.Metro library.
<WrapPanel x:Name="shopItems" Height="auto"> <mah:Tile Style="{StaticResource SmallTileStyle}" /> </WrapPanel>
In the control styles there are objects in which I place a separate text from the array
<TextBlock x:Name="itemName" Margin="10,131,0,33" FontSize="16" Foreground="WhiteSmoke" Text="{Binding Title}" TextWrapping="Wrap" />
But when you start the control, only one element is displayed, not the mass from the list.
shopItems.DataContext = list;
How do I display a list of this item?
<mah:Tile Style="{StaticResource SmallTileStyle}" />