You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
1.1 KiB
22 lines
1.1 KiB
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
<!-- 提示语小标题样式 -->
|
|
<Style x:Key="HintTitleStyle" TargetType="TextBlock">
|
|
<Setter Property="Foreground" Value="#546E7A"/>
|
|
<Setter Property="FontSize" Value="16"/>
|
|
<Setter Property="FontWeight" Value="Bold"/>
|
|
<Setter Property="HorizontalAlignment" Value="Left"/>
|
|
<Setter Property="Margin" Value="0,0,0,5"/>
|
|
</Style>
|
|
|
|
<!-- 提示语正文样式 -->
|
|
<Style x:Key="HintContentStyle" TargetType="TextBlock">
|
|
<Setter Property="Foreground" Value="#78909C"/>
|
|
<Setter Property="FontSize" Value="13"/>
|
|
<Setter Property="FontWeight" Value="Normal"/>
|
|
<Setter Property="TextWrapping" Value="Wrap"/>
|
|
<Setter Property="HorizontalAlignment" Value="Left"/>
|
|
<Setter Property="LineHeight" Value="20"/>
|
|
<Setter Property="LineStackingStrategy" Value="BlockLineHeight"/>
|
|
</Style>
|
|
</ResourceDictionary>
|