I have a merged toolbar and when I'm terminating the Parent workitem, it iterates through the child workitem and terminates all the View, workspaces belonging to child. When terminating the child toolbar manager workspace, ultra toolbar manager workspace is triggering the repaint and in turn triggering the Onload. Is there a way we can avoid the Repaint when disposing the child toolbar of the Merged toolbar manager workspace.
Hello,
The UltraToolbarsManagerWorkspace derives from the UltraToolbarsManager, which provides a BeginUpdate method that suspends painting. You can test this to see if it will prevent the load from triggering. You can resume painting by calling the EndUpdate method.
There are more details in the API docs for the UltraToolbarsManager:http://help.infragistics.com/NetAdvantage/WinForms/current/CLR2.0/?page=Infragistics2.Win.UltraWinToolbars.v11.2~Infragistics.Win.UltraWinToolbars.UltraToolbarsManager_members.html
Please let me know if I may be of further assistance.
I'm looking into this, but would you already have a sample project that reproduces the issue?