My XamDataGrid is using the Office2k7Blue theme which comes row separation lines. I want to remove those lines but am not sure how to do it.
Thanks.
These lines are the borders of the CellValuePresenters and the DataRecordCellArea. You can remove them with the following styles:
<Style TargetType="{x:Type igDP:CellValuePresenter}">
<Setter Property="BorderThickness" Value="0"/>
</Style>
<Style TargetType="{x:Type igDP:DataRecordCellArea}">
Please note, that you have to define those styles in the Resources of the XamDataGrid so that they can override the theme.
Hi Alex,
Neither of those styles had any effect. I have a sneaky suspicion that it is something Office2k7Blue theme specific.