Styles.axaml 1.0 KB

12345678910111213141516171819202122
  1. <Styles xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3. <Style Selector="ItemsControl.ModuleList">
  4. <Setter Property="ItemTemplate" Value="{DynamicResource ModuleCollection}" />
  5. </Style>
  6. <Style Selector="Label.ModuleListTitle">
  7. <!-- <Setter Property="FontSize" Value="{DynamicResource PrsFontSizeLarge}" /> -->
  8. <!-- <Setter Property="FontWeight" Value="{DynamicResource PrsFontWeightBold}"/> -->
  9. <!-- <Setter Property="Foreground" Value="{DynamicResource PrsTileForeground}"/> -->
  10. <Setter Property="VerticalAlignment" Value="Bottom" />
  11. </Style>
  12. <Style Selector="TextBlock.ModuleListDescription">
  13. <!-- <Setter Property="FontSize" Value="{DynamicResource PrsFontSizeNormal}" /> -->
  14. <!-- <Setter Property="Foreground" Value="{DynamicResource PrsTileForeground}"/> -->
  15. <Setter Property="VerticalAlignment" Value="Center" />
  16. <Setter Property="TextWrapping" Value="Wrap" />
  17. </Style>
  18. </Styles>