hi
how to set count of items in ribbongroup that shown on culomn . for example:
set count = 4 and items in group shown:
item1 item5
item2
item3
item4
set count = 3 and items in group shown:
item1 item4
item2 item5
RibbonGroup
Hello,
Do let me know if you have any additional questions regarding the UltraToolbarsManager.
The behavior is to be expected because the ribbon area that is displaying your Gallery popup tools is too small for all of the child tools to be displayed.
Setting the CanCollapse property to false helps this from occuring so that your tools are displayed vertically.
my problem not collapse.
itesm of gallery3 shown out of mainform
how do show items vertical to shown in mainform
The ribbon groups collapse by default when the form is not big enough to show all the tools. You can set the ribbon-level CanCollapse property to false to keep the groups open. This would make your tools appear as they do in your "normal" image always, while the form is resized smaller.
eg.
this.ultraToolbarsManager1.Ribbon.GroupSettings.CanCollapse = Infragistics.Win.DefaultableBoolean.False;
Let me know if you have any questions regarding this matter.
I am waiting