I have a class that creates a lot of tools and adds them to the ToolBarManager. I've been keeping a reference to some of the tools so I can easily access them later, but this is causing FxCop to tell me that I should be implementing IDisposable myself and disposing of these tools. Does the toolbarManager handle disposing the tools?
If the tools are still in the Tools collection of the UltraToolbarsManager when it is disposed, they will be properly disposed as well.