How to hide the caption of one particular docking window in WinForms Docking Manager?
Hide the caption
You have to access the DockHostController and set HideCaption to true as shown below
C#
// Get the dockHost from the control. DockHost dh = panel.Parent as DockHost; DockHostController dhc = dh.InternalController as DockHostController; dhc.HideCaption = true;