I want to show the vertical scrollbar in my grid at all times. Is there a way to force this to show up even if there are not enough rows to fill the grid?
I can see where to change the style and look of the bar, track, buttons etc. but I can't find a "SHOW" property.
yup that whas what i was looking for.
Hi,
Did you try something like this:
yoursGrid.DisplayLayout.Scrollbars = Infragistics.Win.UltraWinGrid.Scrollbars.Both;
(it is a property in Layout group - DisplayLayout.Scrollbars), it should force showing of both scrollbars, if you want only vertical set it to Vertical.
Hope it helps.