I need to add custom code to my application in case the user clicks on the "Close All Windows" tool in my MdiWindowList but the ToolClick event in my WinToolBar is not being triggered.
Any help will be appreciated.
I apologize if I am missing something here, but it looks like there is a single event handler for all clicks on all tools for all ultratoolbars on a form. Is this right? So I place an UltraToolBarManager control on my form, add a menu bar and a toolbar…
Events handler can be set up to individual tools this way:
UltraToolbarManager.Toolbars["ToolbarKey"].Tools["ToolKey"].ToolClick or ToolDoubleClick or any other event available for a tool.
Just make sure you don't forget to set the…