How to make docked control visible after closing it

Hi

How to make the docked control visible again after closing/hiding(Auto Hide) it ??

Regards,
Ubaid Tariq

4 Replies

GR Golda Rebecal Syncfusion Team June 4, 2007 11:36 AM UTC

Hi Ubaid,

We can make the autohidden control visible again by using the SetAutoHideMode method of the DockingManager.

I have attached a sample that illustrates the same.Please have a look at it and let me know if you need any further assistance.

We appreciate your interest in Syncfusion products.

http://websamples.syncfusion.com/samples/Tools.Windows/f61827/Main.htm

Best regards,
Golda


UB Ubaid June 4, 2007 01:53 PM UTC


Hi Golda ... its not working ...

If i close it, the show button does not make it visible.


GR Golda Rebecal Syncfusion Team June 4, 2007 02:39 PM UTC

Hi Ubaid,

We can make the dock enabled control visible again after closing it by using the following code.

//To make visible the control after closing it
if (!this.dockingManager1.GetDockVisibility(ctrl))
this.dockingManager1.SetDockVisibility(ctrl, true);

I have attached a sample that illustrates the same. Please have a look at it and let me know if this helps you.

http://websamples.syncfusion.com/samples/Tools.Windows/f61827/Main.htm

Best regards,
Golda


UB Ubaid June 6, 2007 11:20 AM UTC


Thanks Golda .... its working

Loader.
Up arrow icon