Hi,
Can we remove a ButtonTool from RibbonTab and add another ButtonTool with same key?
Regards,
Ceaser
Ceaser,
In order to add another ButtonTool with the same key, you would need to not only remove the first tool from the RibbonTab but also from the UltraToolbarsManager's root Tools collection. For example:
this.ultraToolbarsManager1.Ribbon.Tabs[0].Groups[0].Tools.Remove(button1);
this.ultraToolbarsManager1.Tools.Remove(button1);
~Kim~
Thanks for the reply