Remove lines from datagrid
wpf, wpfdatagrid
Solution
You can toggle the visibility of the grid lines with `GridLinesVisibility`. To hide them, just set it to `None`
<DataGrid ...
GridLinesVisibility="None"/>
Problem
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)