Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1100
How to control spacing between tables?
posted

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.

Parents
  • 69686
    Verified Answer
    posted

    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>

Reply Children