如何在WPF中设置第一个DataGridCell的选定行的背景

时间:2015-06-12 08:47:02

标签: c# wpf datagrid

在WPF DataGrid的DataGridCell模板中,我们可以更改所选单元格的背景。

但是如何在选择行时更改第一个单元格的背景颜色?就像下图所示。

enter image description here

1 个答案:

答案 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