DataGridTextColumn前景色

时间:2013-06-20 02:03:01

标签: xaml

我正在尝试更改网格标题的前景颜色。我尝试了这个,但它只更改了列中的元素而不是标题。

        <DataGrid Name="Datagrid"    RowBackground="Black" FontFamily="Trebuchet MS"   Grid.ColumnSpan="2"  Foreground="WhiteSmoke"
<DataGrid.Columns >
<DataGridTextColumn Header="ID" Binding="{Binding Id}" Width="*" Foreground="WhiteSmoke" >
                    <DataGridTextColumn.ElementStyle>
                        <Style TargetType="TextBlock">
                            <Setter Property="Foreground" Value="Black"></Setter>
                        </Style>
                    </DataGridTextColumn.ElementStyle>
                </DataGridTextColumn>
   </DataGrid>

1 个答案:

答案 0 :(得分:1)

修改DataGridColumnHeader

的前景

应该有效