Hello, We have an ultrawindock.ultradockmanager where we dynamically add controls (panes/tabs). Everything is working fine except when we add to many tabs and we can no longer see tabs beyond the screen. How can we add scrollbars to an ultrawindock? Thanks.
Scrollbars in tab groups are not supported. You can submit a feature request to show scroll buttons when too many tabs are present (similar to what is shown in the Office 2007 Ribbon when too many tabs are present): http://devcenter.infragistics.com/Protected/RequestFeature.aspx.
Hi Travisnation
I had the same problem. The easy way is to only dock standard .net panel controls. And set its 'AutoScroll' property to True.
If you already have loads of container controls all docked and set up, then add a standard panel control the the docked control. Set its standard dock property to fill and it AutoScroll to true. Then dynamically add your controls to the panel control.
I found this to be the best way.
Hope this helps.
PenPal1999