I use some Ultratoolbars in a form, and that toolbars fills all the upper space of the form, almost all of them are "truncated" - not all toolbars buttons are visible.
For the most toolbars this is not a problem, but for ones I'd like to always display all items. Is it possible to say to the UltraToolbar do not "truncate"(hide) its items (when docked).
HiMaybe one possible option is to set your important toolbar to be MainMenuBar. You could do this via property:- ultraToolbarsManager1.Toolbars[0].IsMainMenuBar = true;Please let me know if this is what you are looking forRegards
Georgi, this works, but just for one toolbar. What I do if I have twho or three toolbar to display all the items?
I have a similar issue and tried this solution but unfortunately, as soon as you set one of the toolbars to IsMainMenuBar=True, the other toolbars get shifted to another line in the "view". Would like to keep all the toolbars in the same "toolbar line".