码迷,mamicode.com
首页 > Windows程序 > 详细

WPF 修改DataGrid选中行时的颜色

时间:2020-05-06 01:19:49      阅读:175      评论:0      收藏:0      [点我收藏+]

标签: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>
技术图片

技术图片

WPF 修改DataGrid选中行时的颜色

标签:type   cli   grid   tps   this   blog   pre   ted   颜色   

原文地址:https://www.cnblogs.com/lonelyxmas/p/12833892.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!