gpt4 book ai didi

wpf - 选择行时设置WPF DataGrid行的文本颜色

转载 作者:行者123 更新时间:2023-12-03 21:19:34 25 4
gpt4 key购买 nike

我正在尝试更改WPF数据网格中所选行中文本的颜色。
默认情况下,它会更改文本颜色为白色,是否可以使用样式/触发器等更改此颜色?

提前致谢!

最佳答案

试试这个

<Style x:Key="DataGridCellStyle" TargetType="{x:Type DataGridCell}" >
<Style.Triggers>
<Trigger Property="IsSelected" Value="True">
<Setter Property="Foreground" Value="Green"/>
</Trigger>
</Style.Triggers>
</Style>


然后,您可以在适合的列中使用它,例如

<DataGrid ...>
<DataGrid.Columns>
<DataGridTextColumn CellStyle="{StaticResource DataGridCellStyle}" .../>


如果您希望将其应用于所有列,则可以将样式的x:key更改为

<Style x:Key="{x:Type DataGridCell}" TargetType="{x:Type DataGridCell}" >

关于wpf - 选择行时设置WPF DataGrid行的文本颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4104646/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com