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
135
Disable Add or Remove buttons at runtime
posted

Beside my buttons on my forms during runtime, I have an arrow that allows me to add or remove my buttons.

How can I disable this option so it cannot be seen at runtime only.

Many thanks,

Dave

Parents
No Data
Reply
  • 6158
    Verified Answer
    Offline posted

    Hello Dave,

    The arrow you are referring to is the QuickCustomize button. You can remove this buttom from the toolbars by setting the ShowQuickCustomizeButton property on the UltraToolbarsManager to False.

    Additionally, there is also a Customize option available in the context menu shown when the user right-clicks on a toolbar. To hide this option, you will need to handle the BeforeToolbarListDropDown event, and set the ShowCustomizeMenuItem property on the eventargs to False.

    Let me know if you have any further questions regarding this functionality.

    Chris

Children