Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
90
Hiding the "All commands","All tabs" options from Quick access toolbar customize window
posted

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/

Parents
No Data
Reply
  • 34810
    Offline posted

    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

Children