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 fatemeh,
The ribbon has a fixed height that is automatically calculated based on three normal sized tools. I recommend submitting a product idea on our website.
please look at two pichture send u
when mainform resize (pic "normal size" to pic "resize")
items in gallery3 shown out of mainform
how do fix it?
normal size:
resize:
I am waiting
Hello,
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.
my problem not collapse.
itesm of gallery3 shown out of mainform
how do show items vertical to shown in mainform
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.
Do let me know if you have any additional questions regarding the UltraToolbarsManager.