标签:type cli grid tps this blog pre ted 颜色
原文:WPF 修改DataGrid选中行时的颜色
只要修改DataGridCell的Style就可以了。
包括具体子项被选中时
<Style TargetType="{x:Type DataGridCell}"> <Style.Triggers> <Trigger Property="IsSelected" Value="True"> <Setter Property="Background" Value="Black" /> </Trigger> <Trigger Property="IsFocused" Value="true"> <Setter Property="Background" Value="Red" /> </Trigger> </Style.Triggers> </Style>
标签:type cli grid tps this blog pre ted 颜色
原文地址:https://www.cnblogs.com/lonelyxmas/p/12833892.html