Can anybody help me me to Disable/Hide the "Customize Quick Access Toolbar" button on ribbon control next to the TOOLS on ribbon...
Thanks,
Kashif
It is working perfectly, but I added the toolbarmanager control in the tabcontrol. The Quick Access Toolbar space is still there, there is any code to remove the space allocated for QAT.
Any insight into why setting UltraToolbarManager.ShowQuickCustomizeButton = false does not have the desired effect?
Thanks!
Hello,
You could prevent the menu from showing, using the following code:
private void ultraToolbarsManager1_BeforeToolbarListDropdown(object sender, BeforeToolbarListDropdownEventArgs e) { e.Cancel = true; }
Hello. I know this thread is old, but i would like to accomplish what you had stated in this thread. I added the code as you suggested, but the option is still showing up.
I am using NetAdvantage for .NET 2008 Vol. 3 CLR 2.0
I have attached a picture as well showing which field i want to remove. This context menu appearss when i right click one of the Ribbons. IE: Calendar, Scheduling, Mechanic Views, etc.
Is this code for a different UI element? What would the proper element be to remove for this item? Thanks.