ultratoolbar RibbonGroup scroll is not present at runtime.
at design time it show a RibbonGroup scroll for each Ribbon, but at runtime caption of all RibbonGroup is trimmed and scroll disappears.
Resizing logic is not used at design-time, so you can see all the tools in their preferred sizes. However, at run-time, the ribbon and its tools are resized based on the form size so all the contents of the currently selected tab are in view. This includes shrinking ribbon groups if need be so they are confined to the tools they contain (this may mean cutting off some of the captions), shrinking tools to smaller sizes, collapsing ribbon groups to drop-down buttons, etc... Only when no more resizing can be done will the scroll buttons appear.
absoultly,
but is there any way to explicity show the scroll buttons and stop the shriking?
On each ButtonTool, make sure you have InstanceProps.MinimumSizeOnRibbon set to Normal. This will prevent the caption from being removed when space is needed in the ribbon.
Hello,
I have the same problem, i follow your instruction, and i'm ok with Ribbon Groups and PopUp Menus into Ribbon Groups but i still have problem with Button Tools into Ribbon Groups.
When i have many of then into the Ribbon Group i can see only an small square of each one and not the text.
Any Help....
There is no specific property to turn this off, but you can set the Ribbon.GroupSettings.CanCollapse to False (to prevent the groups from collapsing to drop down buttons). Then you can set the InstanceProps.MinimumSizeOnRibbon of each tool to whatever size you want them to normally display at to make sure they never shrink when the form shrinks.