I'm new to using the Ribbon, so must be missing something obvious. Once I've added groups to a tab on the ribbon, how can I change the order, so group 2 appears before group 1? It doesn't seem possible to drag groups in the same way that you can with tools and tabs.
Thanks,Campbell
Oh, and make sure to close out of the form designer before you edit the generated code.
Note too that the Infragistics control might reassign group numbers after you are done and flip back to the form designer.
One possible way is to go to the designer.cs behind the form. We were able to tweak the order of the AddRange() method which controls the order the groups are placed into.
For example:
ribbonTab2.Groups.AddRange(new Infragistics.Win.UltraWinToolbars.RibbonGroup[] {
ribbonGroup7,
ribbonGroup5,
ribbonGroup6});
Becomes:
Also, is it possible to have a group that will appear on every tab, without duplicating the same group each time? I would like some items available regardless which tab is selected.
Thanks.