In our software we programmatically generate dockable windows, and at any one time the user could have up to 20 dockable windows open. When several of these windows are docked and unpinned they fill up the unpinned tab area. If you then try to unpin any additional windows they are hidden away until tabs in view are pinned/floated.
Is there any way to enable scrolling of the unpinned tab area, so even if all 20 windows are docked and unpinned, you will be able to access any of them? If this isn't possible is there a way to change the width of the unpinned tab area, to enable more tabs to display?
Regards
Dave
Has there been any update to this in the last 7 years? Can the unpinned tab area show scrollbars, similar to how the pinnedtab area can?
DefaultGroupSettings.TabSizing = Infragistics.Win.UltraWinTabs.TabSizing.AutoSize.
Thanks
Hello Dave,I am not sure, but I don't think that you can have a scroll in the UnpinnedTab area, but you could try the following settings:1.You can set the CompressUnpinnedTabs propery of the UltraDockManager to true. You will be able to see more tabs in the UnpinnedTabArea.ultraDockManager1.CompressUnpinnedTabs = true;2.Other thing that you may try is to set the Width of the single tab that is in the Unpinned Area, and you will make all tabs with the same width.yourDockAreaPane.DefaultPaneSettings.TabWidth = 15;
Sincerely,
Danko Valkov
Developer Support Engineer
Infragistics, Inc.
Can anybody help on this one? Thanks