How to change the appearance of AutoHide tab in WinForms Docking Manager?
Customize auto hide tab
The DockingManager has 2 properties to change the appearence of AutoHideTab.
- DockingManager.AutoHideTabFont: This is used to change the font of AutoHideTab.
- DockingManeger.AutoHideTabHeight: This is used to change the height of AutoHideTab.
C#
// Sets a Font value.
dockingManager1.AutoHideTabFont = new Font("Arial", 12);
//Sets the height of AutoHideTab
dockingManager1.AutoHideTabHeight = 20;
VB
' Sets a Font value.
DockingManager1.AutoHideTabFont = New Font("Arial", 12)
'Sets the height of AutoHideTab
DockingManager1.AutoHideTabHeight = 20
UG document link: https://help.syncfusion.com/windowsforms/dockingmanager/appearance#customize-auto-hide-tab