I have a XamDataGrid that binds to a DataSet. There are plenty of parent-child tables. How do I increase the spacing between child tables (not the record rows but the complete tables)?
Thanks.
I think you are looking for the ExpandableFieldRecordPresenter. You can try setting the Margin of that presenter to something like:
<Style TargetType="{x:Type igDP:ExpandableFieldRecordPresenter}">
<Setter Property="Margin" Value="0,20,0,20"/>
</Style>
That worked great, thank you Alex!