Hi, I have a toolbar where I have set the properties RuntimeCustomizationOptions to None and ShowQuickCustomizeButton to False, however at runtime, when I right-click on the toolbar, I can click in the check-box to hide to toolbar. How do I deactivate this feature ?
Thanks
E
You can only stop this from displaying using the BeforeToolbarListDropdown event.
private void ultraToolbarsManager1_BeforeToolbarListDropdown(object sender, Infragistics.Win.UltraWinToolbars.BeforeToolbarListDropdownEventArgs e) { e.Cancel = true; }
There really should be a property to turn this off. You should Submit a feature request to Infragistics