How to display full caption text on auto hidden dock window in WinForms Docking Manager?
Display full caption in auto hidden tab
This can be achieved by setting the FullCaptionsInAutoHideMode property to true. Please refer the below code snippet which illustrates this:
C#
this.dockingManager1.FullCaptionsInAutoHideMode=true;
VB
Me.dockingManager1.FullCaptionsInAutoHideMode=True
Reference link: https://help.syncfusion.com/windowsforms/dockingmanager/auto-hide-window#display-full-caption-in-auto-hidden-tab