We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

Hiding docking control captions

Is it possible to hide the caption of a single docked control?

I am aware that all controls associated with a docking manager can have their captions hidden by setting the DockingManager.ShowCaptions property to false, but so far have been unable to find an example of hiding the caption on only one specific docked control.

2 Replies

MM Mike Mann November 10, 2009 10:04 PM UTC

Nevermind, I found my answer.
For anyone else seeking the answer to this question, individual captions can be hidden using the HideCaption property of the DockHostController associated with the control's DockHost.

DockHost dhost = Control.Parent as DockHost;
DockHostController dhc = dhost.InternalController as DockHostController;
dhc.HideCaption = true;


MJ Mano J Syncfusion Team November 17, 2009 08:57 AM UTC

Hi Mike,

Thanks for the update.

Regards,
Mano

Loader.
Live Chat Icon For mobile
Up arrow icon