我很想找到一种方法来完成这项工作:
<DataGrid x:Name="name" CanUserAddRows="false"
IsReadOnly="true" ItemsSource="{Binding}">
<DataGrid.CellStyle>
<Style TargetType="DataGridCell">
<Setter Property="BorderThickness" Value="1"/>
<Setter Property="BorderBrush" Value="Red"/>
</Style>
</DataGrid.CellStyle>
</DataGrid>
我只是想改变单元格边框的颜色,为什么它必须如此复杂? :/
答案 0 :(得分:0)
<DataGrid
x:Name="name"
CanUserAddRows="false"
IsReadOnly="true"
ItemsSource="{Binding}"
HorizontalGridLinesBrush="DeepSkyBlue"
VerticalGridLinesBrush="YellowGreen">
</DataGrid>