Docking an MDI child window.

Using DockingManager is there any way we can dock the MDI child windows ? I tried doing following : MyFrameWindowConstructor() { this.IsMdiContainer = true; childWnd = new MyChildWindow(); childWnd.MdiParent= this; dockingManager1 = new DockingManager(); dockingManager1.HostForm = this; dockingManager1.PersistState = false; dockingManager1.BeginInit(); dockingManager1.DockControl(childWnd, this, DockingStyle.Left, 300); childWnd.Show(); dockingManager1.EndInit(); } This works but when the program terminates it gives an unhandled exception. Thanks, Shridhar. }

1 Reply

AD Administrator Syncfusion Team February 4, 2005 10:09 PM UTC

Hi Shridhar, We''re in the process of looking into this. Regards, Gregory Austin Syncfusion, Inc.

Loader.
Up arrow icon