Hi,
I have a design request that I'm nit sure exactly how to implement. Currently we have an UltraTabControl with 10 tabs all horizontal. My customer has requested that we have a hierarchy to the tab control in that he wants to group 6 tabs as top level and the rest as a second level.
Like so,
| Tab1 | Tab2 | Tab3 | Tab4 | Tab5________
| Tab6 | Tab7 | Tab8|___________________|
Any idea how I can force the tabs to display multilevel?
-Joe
Hello Joe,
It sounds like you're trying to set the tabs in the UltraTabControl to be displayed in multiple rows? If that is the case, please refer to this help topic. It explains how to set the UltraTabControl to use multiple rows, and it also describes how you can set the number of tabs in a row.
// Set the Tabs to be displayed in multiple rowsthis.ultraTabControl1.TabLayoutStyle = TabLayoutStyle. MultiRowTabsPerRow; // Set the number of Tabs in each row to be sixthis.ultraTabControl1.TabsPerRow = 6;
// Set the Tabs to be displayed in multiple rows
this
// Set the number of Tabs in each row to be six
Let me know if you need more information about this.
Elizabeth AlbertLocalization Engineer