23 lines
988 B
Plaintext
23 lines
988 B
Plaintext
|
|
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||
|
|
|
||
|
|
<Style x:Key="XBaseDataGrid" TargetType="DataGrid">
|
||
|
|
|
||
|
|
<!-- 表头样式:增加内边距 -->
|
||
|
|
<Setter Property="ColumnHeaderStyle">
|
||
|
|
<Setter.Value>
|
||
|
|
<Style TargetType="DataGridColumnHeader">
|
||
|
|
<!-- 表头背景色 -->
|
||
|
|
<Setter Property="Background" Value="#F5F5F5" />
|
||
|
|
<!-- 表头文字颜色 -->
|
||
|
|
<!--
|
||
|
|
<Setter Property="Foreground" Value="#2C7DBD"/>-->
|
||
|
|
<!-- 表头高度 -->
|
||
|
|
<Setter Property="Height" Value="35" />
|
||
|
|
<!-- 表头文字居中 -->
|
||
|
|
<Setter Property="HorizontalContentAlignment" Value="Left" />
|
||
|
|
</Style>
|
||
|
|
</Setter.Value>
|
||
|
|
</Setter>
|
||
|
|
</Style>
|
||
|
|
|
||
|
|
</ResourceDictionary>
|