Advertisement
prayzzz

Untitled

Aug 6th, 2013
331
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.74 KB | None | 0 0
  1.         <ListView Name="MensaList"
  2.                  ItemsSource="{Binding Mensae}"
  3.                  Background="{StaticResource ListViewBackground}"
  4.                  SelectionChanged="MensaListOnItemClick"
  5.                  Grid.Column="1"
  6.                  Grid.Row="2"
  7.                  ItemContainerStyle="{StaticResource MensaItemStyle}"
  8.                  HeaderTemplate="{StaticResource HeaderTemplate}"
  9.                  Header="Mensen">
  10.  
  11.  
  12.     <DataTemplate x:Key="HeaderTemplate">
  13.         <Border Background="{StaticResource MensaBlue}" HorizontalAlignment="Stretch">
  14.             <TextBlock Text="{Binding}" FontSize="26" Foreground="White" FontFamily="Segoe UI Light" FontWeight="Light" />
  15.         </Border>
  16.     </DataTemplate>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement