You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
616 B
XML
13 lines
616 B
XML
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
<!-- 查询按钮样式-->
|
|
<Style x:Key="btnNormalSmlstyle" TargetType="Button" >
|
|
<Setter Property="Foreground" Value="White"></Setter>
|
|
<Setter Property="FontSize" Value="20"></Setter>
|
|
<Setter Property="HorizontalAlignment" Value="Center"></Setter>
|
|
<Setter Property="VerticalAlignment" Value="Center"></Setter>
|
|
<Setter Property="FontFamily" Value="微软雅黑"/>
|
|
</Style>
|
|
|
|
</ResourceDictionary>
|
|
|