RC
Rajesh C
Syncfusion Team
May 26, 2007 12:19 AM UTC
Hi Nedu,
Thank you for using Syncfusion products.
It is possible to stop the panel from autohiding once the user opens it. Please call autohidden control's Focus() method in dockingManager1_AutoHideAnimationStop event handler and refer to the following code snippets which illustrates the same:
[ C# ]
private void dockingManager1_AutoHideAnimationStop(object sender, Syncfusion.Windows.Forms.Tools.AutoHideAnimationEventArgs arg)
{
arg.Control.Focus();
}
The following events are fired when a autohidden control is opened or closed.
-> AutoHideAnimationStart event
-> AutoHideAnimationStop event
Please let me know if you have any other queries.
Regards,
Rajesh C
CH
Chinedu
May 29, 2007 07:02 PM UTC
Thank you Rajesh, really appreciate your help.