Hi ,
I want to hide the "All commands","All tabs" from choose command combo in Quick access toolbar customize window . please let me know how to achive this/
Thanks Andrew, i achieve with your solution. In the Customize QAT window , initially i set
StockItemModificationOptions = StockItemModificationOption.None;
but when selecting the tool from left side, for the selected tool , the
StockItemModificationOptions option is not mapped. which means those selected tool able to modify,remove.Is it possible to control this behaviour.
Hello Abi,
I have been investigating into a way to hide the “All Commands” and “All Tabs” options from the Quick Access Toolbar customize menu, and in order to do this, I would recommend first handling the BeforeCustomizationDialogDisplayed event of the UltraRibbonCustomizationProvider. In this event, the event arguments can get you the RibbonCustomizationDialog object that is opening.
From the dialog, you can recursively loop through the Controls collection and look for UltraComboEditor objects. Once you have these, you can use their ValueLists and remove the items that you are looking to remove from them. I am attaching a sample project that demonstrates how this can be done.
Please let me know if you have any other questions or concerns on this matter.
ToolbarsManagerCustomizationDialogDemo.zip