| 12345678910111213141516171819202122232425262728 |
- <ResourceDictionary
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
- <DataTemplate x:Key="NewDataTemplate">
- <Grid>
- <StackPanel
- Margin="0,0,0,12"
- Orientation="Horizontal">
- <Image
- Source="{Binding Image}"
- Height="100"
- Width="100"
- Stretch="UniformToFill"/>
- <StackPanel
- Margin="5,5,0,0">
- <TextBlock
- Text="{Binding Title}"
- Foreground="{StaticResource BlackBrush}"
- TextWrapping="Wrap"
- MaxLines="2"
- FontSize="24"/>
- </StackPanel>
- </StackPanel>
- </Grid>
- </DataTemplate>
- </ResourceDictionary>
|