Hello;
I've got tabs with close buttons visible, (I've got version 8.1) and can't seem to locate a close button click event. How are people catching this user action, (Form closing, tabClosing?) or am I just missing the relevant event.
Thanks,
Bill
Beautiful.. Thanks, Mike..
You can handle either the UltraTabbedMdiManager.TabClosing or Form.FormClosing events to know when one of the tabs is closing. However, if you want to know when it is closing inresponse to the close button being clicked, you will have to handle the TabClosing event. Cast the event args to an MdiTabClosingEventArgs instance and get the CloseReason. It will be set to CloseButton when the close button is clicked.