Docking Manager Bug

Using VS2005 RC and 3.3.02.20 Cannot override docking panel properties with ocde. Here is code: namespace DockingTest { public partial class Parent : Form { public Parent() { InitializeComponent(); this.dockingManager1. SetCloseButtonVisibility( this.panel1, false); this.dockingManager1. SetAutoHideButtonVisibility( this.panel1, false); this.dockingManager1. SetDockLabel( this.panel1, "The Panel"); this.dockingManager1. SetDockVisibility( this.panel1, false); } } } Thanks

DockingTest0.zip

1 Reply

VS Vijayanand S Syncfusion Team December 8, 2005 09:09 AM UTC

Hi Ken, Docking Manager loads the docking windows properties after the Form Load event. If you want to set the properties for docking windows during application startup, you could use the statement within the NewDockStateEndLoad event. This event will trigger at the end of the Form Load event. Please let me know if this is not help you. We appreciate your interest in Syncfusion Products. Regards, Vijay

Loader.
Up arrow icon