删除所有DataGrid行和单元格边框

我想隐藏(或删除)我的数据网格中的所有行(和随后的单元格)的所有边界,认为一个基本的HTML表格 。 我已经看遍了,大多数问题似乎是关于造型而不是隐藏它们。

我已经试过像这样设置BorderBrush和BorderThickness:

<DataGrid.RowStyle> <Style TargetType="DataGridRow"> <Setter Property="BorderBrush" Value="Transparent" /> <Setter Property="BorderThickness" Value="0" /> </Style> </DataGrid.RowStyle> 

尝试了CellStyle一样,但没有骰子,仍然看到边界。

那么设置GridLinesVisibility="None"呢?

 <DataGrid GridLinesVisibility="None"> ... <DataGrid>