While laying out the grid programmatically, I wanted to basically remove the blank area between the grid's border and where the row/cells starts (Appears to be of type PreRowAreaUIElement) .
This is the place where normally the row selector would be.. but I turned that off through DisplayLayout.Override.RowSelectors = "none"..
Can this element be hidden somehow? Currently it just takes up space in the grid and provides no value-add..
Thanks,
Kevin
Hi Kevin,
That's usually where the expansion indicators go. If you are only displaying a flat set of data, then the easiest thing for you to do is set ViewStyle to SingeBand.
Another option might be to use the Indentation property on the band and set it to 0.
Ugh!
I should've known the answer.. Tried these and worked.
Thanks!