Articles in this section
Category / Section

How to show close button for all tabs in WinForms TabControlAdv?

1 min read

Close button settings

Close buttons for each tab can be made visible by setting the ShowTabCloseButton property of the TabControlAdv. Also, the close button can be restricted to be shown only in the active tab pages by the ShowCloseButtonForActiveTabOnly property. Refer to the below given code snippet.

C#

//Sets the close button for all Tab pages
this.tabControlAdv1.ShowTabCloseButton = true;
//Restrict the close button to be shown only for the active tab pages
this.tabControlAdv1.ShowCloseButtonForActiveTabOnly = true;

VB

'Sets the close button for all Tab pages
Me.tabControlAdv1.ShowTabCloseButton = True
'Restrict the close button to be shown only for the active tab pages
Me.tabControlAdv1.ShowCloseButtonForActiveTabOnly = True

Reference link: https://help.syncfusion.com/windowsforms/tabcontrol/interactive-features

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied