WPF 修改DataGrid选中行时的颜色
Posted lonelyxmas
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPF 修改DataGrid选中行时的颜色相关的知识,希望对你有一定的参考价值。
原文: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>
以上是关于WPF 修改DataGrid选中行时的颜色的主要内容,如果未能解决你的问题,请参考以下文章
WPF,通过修改dataGrid的cell的style,改变选中行失去焦点时的颜色 4.0可用
WPF 在DataGrid选中某一行时,该行的DataGridTemplateColumn中控件的背景颜色需要怎么才能变?