DockingManager.SetAutoHideOnLoad

Hi,
I cannot find DockingManager.SetAutoHideOnLoad method anymore once I upgrade from 3.3 to 4.2. Can you please show me a workaround?
Thanks,
Frank

1 Reply

MU Murugan Syncfusion Team May 7, 2007 11:47 PM UTC

Hi Frank,

We could use DockingManager.SetAutoHideMode() method to resolve this. We could call SetAutoHideMode in NewDockStateEndLoad event handler. NewDockStateEndLoad method is fired after the initialization of DockingManager.

[C#]
private void dockingManager1_NewDockStateEndLoad(object sender, System.EventArgs e)
{
this.dockingManager1.SetAutoHideMode( this.panel1 , true );
}

[Sample]
http://websamples.syncfusion.com/samples/Tools.Windows/F60553/Main.htm

Please try this and let me know if this helps.

Thank you for your interest Syncfusion products.

Regards,
Murugan P.S

Loader.
Up arrow icon