Hello,
I'm developing a project for touchscreens and my users complain about the size of the scrollbars in the grid.
So I found that there is a solution of adding a UltraScrollBar to the UltraGrid, but I can't find how to do that! Is there an example somewhere? How can I attach the UltraScrollBar to the UltraWinGrid?
Thanks in advance.
Hello Struski,
Thank you for contacting Infragistics.
I believe your best option would be to make sure you're using at least Infragistics 2013 Volume 2 and enable the touch support we added to our controls in that version.
http://help.infragistics.com/doc/WinForms/2014.1/CLR4.0/?page=Touch_Support.html
Ok, but we are currently on a tight budget and not able to upgrade our infragistics product.
any other option? Is there an example on how to do that?
If you want to change the size of the scrollbars, then that feature was added in v12.2.
private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e) { e.Layout.ScrollBarLook.HorizontalScrollBarHeight = 100; e.Layout.ScrollBarLook.VerticalScrollBarWidth = 100; }
If you are using an older version than that, then it might be possible to use an UltraScrollbar outside the grid, but it would require a lot of coding.