TextBlockBaseStyle.xaml 987 B

1234567891011121314151617181920
  1. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2. xmlns:hc="clr-namespace:HandyControl.Controls"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  4. <Style x:Key="TextBlockBaseStyle" TargetType="TextBlock">
  5. <Setter Property="VerticalAlignment" Value="Center"/>
  6. <Setter Property="HorizontalAlignment" Value="Center"/>
  7. <Setter Property="Foreground" Value="{DynamicResource PrimaryTextBrush}"/>
  8. </Style>
  9. <Style x:Key="TextBlockBoldBaseStyle" BasedOn="{StaticResource TextBlockBaseStyle}" TargetType="TextBlock">
  10. <Setter Property="FontWeight" Value="Bold"/>
  11. </Style>
  12. <Style x:Key="HighlightTextBlockBaseStyle" TargetType="hc:HighlightTextBlock">
  13. <Setter Property="HighlightBrush" Value="{DynamicResource PrimaryBrush}"/>
  14. <Setter Property="HighlightTextBrush" Value="{DynamicResource TextIconBrush}"/>
  15. </Style>
  16. </ResourceDictionary>