在WPF DataGrid的DataGridCell模板中,我们可以更改所选单元格的背景。
但是如何在选择行时更改第一个单元格的背景颜色?就像下图所示。
答案 0 :(得分:0)
您必须编写自己的单元格样式以突出显示每个单元格背景
<Window.Resources>
<Style x:Key="CellStyle" TargetType="DataGridCell">
<Setter Property="Background" Value="Yellow" />
</Style>
</Window.Resources>
<DataGrid x:Name="dataGrid" CellStyle="{StaticResource CellStyle}">
</DataGrid>
请您点击以下链接
http://techiethings.blogspot.ch/2010/05/get-wpf-datagrid-row-and-cell.html