I am using the WPF toolkit datagrid to display some data and want to increase the thickness of the horizontal girdlines for each row, I would have thought this would be a simple thing to do but i can't find solution.
Asked
Active
Viewed 6,885 times
5
-
I agree! i want the same thing. It seems to be impossible with WPF. I can easily create borders around my cells or rows. But that is not the same thing. – John Henckel Aug 25 '17 at 18:20
1 Answers
4
I've never done this, but I would try to set the BorderThickness
of the rows via the RowStyle
property. Here is some documentation about the RowStyle and for the DataGridRow.
Hope this works. A short follow up with the result would be great.
Regards
EDIT
As you can read here, you can set only e.g. the bottom property. So only the vertical bottom lines should appear.
<Setter Property="BorderThickness" Value="0, 0, 0, 5"/>

DHN
- 4,807
- 3
- 31
- 45
-
I don't want a border around each row, i don't want vertical gridlines just horizontal ones. – Matthew Jun 17 '10 at 09:32