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
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
That answers my question perfectly, much appreciated for your help and thank you very much.