12345678910111213141516171819202122232425 |
- <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
- <!-- 基样式 -->
- <Style x:Key="TextBlockBaseStyle" TargetType="{x:Type TextBlock}">
- <Setter Property="FontFamily" Value="{DynamicResource DefaultFontFamily}" />
- <Setter Property="FontSize" Value="{DynamicResource DefaultFontSize}" />
- <Setter Property="Foreground" Value="{DynamicResource DefaultForeground}" />
- <Setter Property="Padding" Value="0" />
- <Setter Property="VerticalAlignment" Value="Center" />
- </Style>
- <!-- 默认样式 -->
- <Style
- x:Key="DefaultTextBlock"
- BasedOn="{StaticResource TextBlockBaseStyle}"
- TargetType="{x:Type TextBlock}" />
- <Style
- x:Key="RequiredTextStyle"
- BasedOn="{StaticResource {x:Type TextBlock}}"
- TargetType="{x:Type TextBlock}">
- <Setter Property="Text" Value="*" />
- <Setter Property="Foreground" Value="Red" />
- <Setter Property="VerticalAlignment" Value="Center" />
- </Style>
- </ResourceDictionary>
|