如何设置DataGrid的透明背景?

时间:2016-07-29 05:59:24

标签: c# .net wpf xaml

如何将透明背景设置为DataGrid

以下不起作用:

<DataGrid  Background="Transparent"  >
    <DataGrid.CellStyle>
        <Style TargetType="DataGridCell">
            <Setter Property="Background" Value="Transparent"/>
        </Style>
    </DataGrid.CellStyle>
</DataGrid>

使用此代码保持白色如雪:)

修改

更新了代码(复制粘贴问题)

1 个答案:

答案 0 :(得分:3)

您还需要将RowBackground也设置为Transparent

<DataGrid Background="Transparent" RowBackground="Transparent">