Guest User

Untitled

a guest
Jul 21st, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. </UserControl.Resources>
  2. <DataTemplate x:Key="ItemTemplate">
  3. <StackPanel>
  4. <TextBlock Text="{Binding RandomValues}"/>
  5. </StackPanel>
  6. </DataTemplate>
  7. <ItemsPanelTemplate x:Key="UniformGridPanel">
  8. <UniformGrid Rows="1" HorizontalAlignment="Center"/>
  9. </ItemsPanelTemplate>
  10. </UserControl.Resources>
  11.  
  12. <ListBox HorizontalAlignment="Left" Height="100" VerticalAlignment="Top" Width="Auto" DataContext="{Binding}" ItemTemplate="{DynamicResource ItemTemplate}" ItemsSource="{Binding Collection}" ItemsPanel="{DynamicResource UniformGridPanel}" Style="{DynamicResource ListBoxStyle}"/>
Add Comment
Please, Sign In to add comment