5
向列標題應用背景後,網格線不再可見。任何簡單的方法來獲取網格線?如何在應用背景後在列標題中顯示網格線
向列標題應用背景後,網格線不再可見。任何簡單的方法來獲取網格線?如何在應用背景後在列標題中顯示網格線
您可以爲DataGridColumnHeader指定BorderBrush和BorderThickness。示例
<DataGrid.Resources>
<Style TargetType="{x:Type DataGridColumnHeader}">
<Setter Property="Background" Value="Blue"/>
<Setter Property="BorderBrush" Value="Red"/>
<Setter Property="BorderThickness" Value="1,1,1,1"/>
</Style>
</DataGrid.Resources>