RowSplitBoxUIElement
ColSplitBoxUIElement
Is there any way to hide or disable the split box that shows on the grid scrollbars? I can split my grid multiple times but would like to be able to disable that feature.
Thanks
The feature is scroll regions and you can remove them from the UI by setting the maximum allowed for rows and columns to 1:
grid.DisplayLayout.MaxColScrollRegions = 1;grid.DisplayLayout.MaxRowScrollRegions =1;
Let me know if you have any questions with this matter.