Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove lines from datagrid

Can we remove the lines between every row of datagrid? so that it look like listview (so that only data should be there no lines in between two rows)

like image 538
RATHI Avatar asked Jun 01 '12 05:06

RATHI


1 Answers

You can toggle the visibility of the grid lines with GridLinesVisibility. To hide them, just set it to None

<DataGrid ...
          GridLinesVisibility="None"/>
like image 187
Fredrik Hedblad Avatar answered Nov 08 '22 07:11

Fredrik Hedblad