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
345
Removing XamGrid Column Separator
posted

I have a xam Grid.  Currently I am using the following style to remove the grid cell's border.

<Setter Property="BorderThickness" Value="0,0,0,0" />
However, the border for the cell is remove, a vertical line still exists between each column.  How can I remove the Vertical Grid Line?

Thanks
Parents
  • 27093
    posted
    Hello,
     
    I have been looking into your enquire and using the style you mentioned:
     
    <Style TargetType="ig:CellControl" >
        <Setter Property="BorderThickness" Value="0" />
    </Style>
     
    seems to do the trick.
     Please let me know if I have misunderstood you in any, or if I can be of any further assistance on the matter.
Reply Children