| 123456789101112131415161718192021 |
- <ResourceDictionary
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
- <DataTemplate x:Key="HubHeaderDataTemplate">
- <Grid>
- <TextBlock
- Text="{Binding}"
- FontSize="24"/>
- </Grid>
- </DataTemplate>
- <DataTemplate x:Key="HubSectionHeaderDataTemplate">
- <Grid>
- <TextBlock
- Text="{Binding}"
- FontSize="42"/>
- </Grid>
- </DataTemplate>
-
- </ResourceDictionary>
|