12345678910111213141516171819202122 |
- <Styles xmlns="https://github.com/avaloniaui"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
- <Style Selector="ItemsControl.ModuleList">
- <Setter Property="ItemTemplate" Value="{DynamicResource ModuleCollection}" />
- </Style>
- <Style Selector="Label.ModuleListTitle">
- <!-- <Setter Property="FontSize" Value="{DynamicResource PrsFontSizeLarge}" /> -->
- <!-- <Setter Property="FontWeight" Value="{DynamicResource PrsFontWeightBold}"/> -->
- <!-- <Setter Property="Foreground" Value="{DynamicResource PrsTileForeground}"/> -->
- <Setter Property="VerticalAlignment" Value="Bottom" />
- </Style>
- <Style Selector="TextBlock.ModuleListDescription">
- <!-- <Setter Property="FontSize" Value="{DynamicResource PrsFontSizeNormal}" /> -->
- <!-- <Setter Property="Foreground" Value="{DynamicResource PrsTileForeground}"/> -->
- <Setter Property="VerticalAlignment" Value="Center" />
- <Setter Property="TextWrapping" Value="Wrap" />
- </Style>
- </Styles>
|