Hallo,
I'm using Infragistics 7.3 and I have a UltraTabbedMdiManager. I want that the tab will be closed if I click with the middle mouse button on a tab header (like InternetExplorer 7, Firefox or Opera). Is there any possibility? I found no mouse click event.
Thank's
This functionality is built-in in version 8.1 and later. If you want to implement it manually in earlier versions, you will have to hook the MouseDown of the MdiTabGroupControl instances added to the MdiClient of the mdi parent Form. If you hook the ControlAdded and ControlRemoved of the MdiClient control, you can hook the MouseDown when a control is added and unhook when it is removed.
But I didn't understand where I can get the MdiClient control to hook the ControlAdded and the ControlRemoved event.
Can you help me a little bit?
It is a child of the mdi parent Form. If you iterate the Form's Controls collection, you should find a control of type MdiClient.