I am using C# and Telerik controls version 2009.1.9.414.
In the Quick Access toolbar overflow menu, I would like to create additional items. I am referring to items like "Show Below the Ribbon" and "Minimize the Ribbon", not the items at the top that are added dynamically to correspond to the toolbar buttons.
Is there a way to add items? I try:
in the OverflowButtonElement_DropDownOpening event handler, but the CPU goes to 100% and the app seems to hang.
Any suggestions?
Thanks,
Nick
In the Quick Access toolbar overflow menu, I would like to create additional items. I am referring to items like "Show Below the Ribbon" and "Minimize the Ribbon", not the items at the top that are added dynamically to correspond to the toolbar buttons.
Is there a way to add items? I try:
this.radRibbonBar1.RibbonBarElement.QuickAccessToolBar.OverflowButtonElement.DropDownMenu.Items.Add(new RadMenuItem("testing")); |
in the OverflowButtonElement_DropDownOpening event handler, but the CPU goes to 100% and the app seems to hang.
Any suggestions?
Thanks,
Nick