How to toggle AutoHide in WinForms Docking Control

18 Nov 20181 minute to read

AutoHide behavior can be enabled or disables using AutoHideEnabled property in WinForms Docking Control.

//To enable the AutoHide behavior
 this.dockingManager1.AutoHideEnabled = true;
'To enable the AutoHide behavior
 Me.dockingManager1.AutoHideEnabled = true