TextBlock.xaml 1.1 KB

12345678910111213141516171819202122232425
  1. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  2. <!-- 基样式 -->
  3. <Style x:Key="TextBlockBaseStyle" TargetType="{x:Type TextBlock}">
  4. <Setter Property="FontFamily" Value="{DynamicResource DefaultFontFamily}" />
  5. <Setter Property="FontSize" Value="{DynamicResource DefaultFontSize}" />
  6. <Setter Property="Foreground" Value="{DynamicResource DefaultForeground}" />
  7. <Setter Property="Padding" Value="0" />
  8. <Setter Property="VerticalAlignment" Value="Center" />
  9. </Style>
  10. <!-- 默认样式 -->
  11. <Style
  12. x:Key="DefaultTextBlock"
  13. BasedOn="{StaticResource TextBlockBaseStyle}"
  14. TargetType="{x:Type TextBlock}" />
  15. <Style
  16. x:Key="RequiredTextStyle"
  17. BasedOn="{StaticResource {x:Type TextBlock}}"
  18. TargetType="{x:Type TextBlock}">
  19. <Setter Property="Text" Value="*" />
  20. <Setter Property="Foreground" Value="Red" />
  21. <Setter Property="VerticalAlignment" Value="Center" />
  22. </Style>
  23. </ResourceDictionary>