当前位置:   article > 正文

[C# WPF] DataGrid选中行或选中单元格的背景和字体颜色修改

[C# WPF] DataGrid选中行或选中单元格的背景和字体颜色修改

问题描述

WPF中DataGrid的选中行或选中者单元格,在焦点失去后,颜色会很淡,很不明显,不容易区分。

解决方法

失去焦点的情况下,如何设置行或单元格与选中的时候颜色一样?

  1. <DataGrid.Resources>
  2. <Style TargetType="DataGridCell">
  3. <Style.Resources>
  4. <SolidColorBrush x:Key="{x:Static SystemColors.InactiveSelectionHighlightBrushKey}" Color="#0078D7"/>
  5. </Style.Resources>
  6. </Style>
  7. </DataGrid.Resources>

这里需要注意的是,TargetType="DataGridCell",影响的是只是单元格,如果希望影响到行,修改为“DataGridRow”。

这里还遇到另外一个小问题,我们会发现选择单元格或者行时,颜色字体颜色由黑变白,但是失去焦点后颜色又恢复了黑色,我们要怎么处理呢?可以通过控制下面的脚本来控制选中时的颜色。

  1. <Style.Triggers>
  2. <Trigger Property="IsSelected" Value="True">
  3. <Setter Property="Foreground" Value="White"/>
  4. </Trigger>
  5. </Style.Triggers>

完整代码如下:

  1. <DataGrid x:Name="xxx">
  2. <DataGrid.Resources>
  3. <Style TargetType="DataGridCell">
  4. <Style.Resources>
  5. <SolidColorBrush x:Key="{x:Static SystemColors.InactiveSelectionHighlightBrushKey}" Color="#0078D7"/>
  6. </Style.Resources>
  7. <Style.Triggers>
  8. <Trigger Property="IsSelected" Value="True">
  9. <Setter Property="Foreground" Value="White"/>
  10. </Trigger>
  11. </Style.Triggers>
  12. </Style>
  13. </DataGrid.Resources>
  14. ...
  15. </DataGrid>

 运行效果:

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/97876
推荐阅读
相关标签
  

闽ICP备14008679号