I want to hide (or remove) all the borders of all the rows (and subsequently cells) in my datagrid, think a basic HTML table. I've looked all over and most questions seem to be about styling them and not hiding them.
I've already tried setting the BorderBrush and BorderThickness like so:
<DataGrid.RowStyle> <Style TargetType="DataGridRow"> <Setter Property="BorderBrush" Value="Transparent" /> <Setter Property="BorderThickness" Value="0" /> </Style> </DataGrid.RowStyle>
Tried the same for the CellStyle, but no dice, still seeing borders.
What about setting GridLinesVisibility="None"
?
<DataGrid GridLinesVisibility="None"> ... <DataGrid>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With