Hi
Is it possible to remove the QAT Menu (black triange)? If not, is it possible to have the QAT always on top that means remove the option "Show Below the Ribbon" from the menu?
To remove that you would need to remplate the QuickAccessToolbar such that it does not contain the "PART_QuickCustomizeMenuSite" element. Note, the option to show the qat below the ribbon is still displayed in other context menus such as when you right click on a tool. You may want to submit a suggestion for adding an "AllowCustomize" property on the xamRibbon and possibly a separate property for whether the qat location can be changed.
it is not pretty but you can do the following. First get the event fired when the Menu is open.
<igRibbon:XamRibbon Name="xamRibbon2">...<igRibbon:XamRibbon.QuickAccessToolbar><igRibbon:QuickAccessToolbar QuickCustomizeMenuOpening="QuickAccessToolbar_QuickCustomizeMenuOpening">...On this event set the following e.Tool.Visibility = Visibility.Collapsed;
This will close the menu and set it visibility to collapsed