How can i show the divisory lines of the data grid, is there a way to edit them?
Thanks
This can be achieved with a style for the CellValuePresenter, setting the BorderThickness property. Here is some sample style for this:
<Style TargetType="{x:Type igDP:CellValuePresenter}">
<Setter Property="BorderThickness" Value="0,0,1,1"/>
<Setter Property="BorderBrush" Value="Black"/>
</Style>
Hello,
Can you give us a quick example of what you are trying to achieve?
Thanks.