如何将透明背景设置为DataGrid
?
以下不起作用:
<DataGrid Background="Transparent" >
<DataGrid.CellStyle>
<Style TargetType="DataGridCell">
<Setter Property="Background" Value="Transparent"/>
</Style>
</DataGrid.CellStyle>
</DataGrid>
使用此代码保持白色如雪:)
修改
更新了代码(复制粘贴问题)
答案 0 :(得分:3)
您还需要将RowBackground
也设置为Transparent
:
<DataGrid Background="Transparent" RowBackground="Transparent">