Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
220
Show scroll bar in UltraWinDock
posted

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.

 

  • 44743
    posted

    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.

  • 170
    posted

    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