我正在尝试更改 WPF DataGrid 控件中所选单元格的样式。
样式DataGridCell
和DataGridRow
有什么区别? 我在下面尝试了各种组合,它们都有效。 但是,似乎我只需要DataGridCell
或DataGridRow
样式。
两者兼而有之的目的是什么? 这告诉我我误解了他们的目的。
DataGridCell
样式:(在我自己的代码中,我更改了默认值的颜色)
<Style TargetType="{x:Type DataGridCell}">
<Style.Triggers>
<Trigger Property="IsSelected" Value="True">
<Setter Property="Background" Value="{DynamicResource {x:Static SystemColors.HighlightBrushKey}}"/>
<Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.HighlightTextBrushKey}}"/>
<Setter Property="BorderBrush" Value="{DynamicResource {x:Static SystemColors.HighlightBrushKey}}"/>
</Trigger>
</Style.Triggers>
</Style>
DataGridRow
样式:(在我自己的代码中,我更改了默认值的颜色)
<Style TargetType="{x:Type DataGridRow}">
<Style.Triggers>
<Trigger Property="IsSelected" Value="True">
<Setter Property="Background" Value="{DynamicResource {x:Static SystemColors.HighlightBrushKey}}"/>
<Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.HighlightTextBrushKey}}"/>
<Setter Property="BorderBrush" Value="{DynamicResource {x:Static SystemColors.HighlightBrushKey}}"/>
</Trigger>
</Style.Triggers>
</Style>
DataGridRow 将应用于整个行。如果要设置整行的任何属性,可以使用 DataGridRow。
每个 DataGridRow 都包含一个 DataGridCell 列表。您也可以为此定义样式。如果不这样做,它将占用 DataGridRow 中的样式。
通常,我们指定后者来定义两个相邻单元格之间的区别,例如指定单元格之间的边距、边框等。
@abhishek所说...我遇到需要同时使用行样式和单元格样式的情况那是我的行风格
<!-- Row Style-->
<Style x:Key="RowStyle" TargetType="{x:Type dg:DataGridRow}">
<Style.Triggers>
<Trigger Property="Validation.HasError" Value="true">
<Setter Property="BorderThickness" Value="1"/>
<Setter Property="BorderBrush" Value="Red"/>
<Setter Property="ToolTip" Value="{Binding RelativeSource={RelativeSource Self}, Path=(Validation.Errors).CurrentItem.ErrorContent}"/>
</Trigger>
</Style.Triggers>
</Style>
那么我需要特定的单元格在选择时为白色背景我用了
<Style x:Key="TimeCell" TargetType="{x:Type dg:DataGridCell}">
<Style.Triggers>
<Trigger Property="IsSelected" Value="True">
<Setter Property="Background" Value="White"/>
<Setter Property="Foreground" Value="Black"/>
<Setter Property="BorderBrush" Value="{DynamicResource {x:Static SystemColors.HighlightBrushKey}}"/>
</Trigger>
</Style.Triggers>
</Style>
并为特定列提供样式
<dg:DataGridTemplateColumn Width="120" CellStyle="{StaticResource TimeCell}">
我希望我想说的很清楚