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!
Hi Ramesh,
I am not sure what a screenshot would do for you. If you place Alex's tiny code snippet in any grid it just works.
Hi CrunchyCat,
Can you post your screenshot?. I also need to do something like this.
Ramesh.P