Ok I have an UltraTabControl on tab on my and I'm trying to a tabbed single document interface. I enabled the close buttons on the tabs and it works we cause the tabs are closed when you click them, but the weirdness is that if you loop through the tab collection they are still in there. So I went looking for a "tab closed" event to manually remove them from the collection, but there doen't seem to be one. Am I missing something?
As you've noticed, the "close" functionality of a tab doesn't remove the tab from the Tabs collection of WinTabControl. Instead, it hides the tab.
WinTabControl has a TabClosed event, which sounds like what you're looking for. The following forum post describes removing the "closed" tab from the Tabs collection in this event:http://forums.infragistics.com/forums/t/12568.aspx
Shouldn't the tabs be removed as opposed to hidden by default?