Articles in this section
Category / Section

How to hide the caption of one particular docking window in WinForms Docking Manager?

1 min read

 

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;

 

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