Advertisement
Guest User

Untitled

a guest
Apr 20th, 2014
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <StackPanel>
  2. <TextBlock Text="• Item 1"/>
  3. <TextBlock Text="• Item 2"/>
  4. </StackPanel>
  5.  
  6. <TextBlock>&#x2022; Item 1</TextBlock>
  7.  
  8. <ItemsControl ItemsSource="{Binding MyItems}">
  9. <ItemsControl.ItemTemplate>
  10. <DataTemplate>
  11. <TextBlock Text="{Binding StringFormat='• {0}'}" />
  12. </DataTemplate>
  13. </ItemsControl.ItemTemplate>
  14. </ItemsControl>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement