Hub.xaml 551 B

12345678910111213141516171819202122
  1. <ResourceDictionary
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  4. <DataTemplate x:Key="HubHeaderDataTemplate">
  5. <Grid>
  6. <TextBlock
  7. Text="{Binding}"
  8. FontSize="24"/>
  9. </Grid>
  10. </DataTemplate>
  11. <DataTemplate x:Key="HubSectionHeaderDataTemplate">
  12. <Grid>
  13. <TextBlock
  14. Text="{Binding}"
  15. FontSize="42"/>
  16. </Grid>
  17. </DataTemplate>
  18. </ResourceDictionary>