Our users would like to know if there was a way to put a close button in the TabList.
Basically what they want is a way to close the forms when looking at the dropdown list of open MDI Child forms in the TabList.
Is there a way to do this?
Thanks,
Jason
Hello Jason,
Thank you for posting to our forum.
Yes, You can have a close button in the TabList and for that you can refer this online document described step by step.
https://ko.infragistics.com/help/winforms/wintab-display-a-close-button-on-a-tab
Your code would be like this:
this.ultraTabbedMdiManager1.TabSettings.CloseButtonVisibility = Infragistics.Win.UltraWinTabs.TabCloseButtonVisibility.Always;
Please let me know if you need further assistance.
Diyva,
Thanks for the response. This isn't exactly what I'm looking for. What our users are looking for is for there to be an "X" in the TabList next to the name of the tab.
When I click the "dropdown arrow" (which becomes visible when I set .ShowTabListButton = Infragistics.Win.DefaultableBoolean.[True]), and I get the list of all open tabs, they want the ability to click on an X in that list to close the associated tab.