Hi,
I'm new to the Infragitics Tools and have a problem. I want to dock a form by the help of the ultradockmanager. Here is my samplecode:
private void btnTest_Click(object sender, EventArgs e) { SuspendLayout(); Form frm = new TestForm1(); frm.TopLevel = false; frm.FormBorderStyle = FormBorderStyle.SizableToolWindow; DockableControlPane dcpForm = new DockableControlPane("form1", "Ein Formular", frm); DockableGroupPane dgpForm = new DockableGroupPane(); dgpForm.ChildPaneStyle = ChildPaneStyle.TabGroup; dgpForm.Panes.Add(dcpForm); DockAreaPane dapLeft = new DockAreaPane(DockedLocation.DockedLeft); dapLeft.Panes.Add(dgpForm); this.ultraDockManager1.DockAreas.Add(dapLeft); ResumeLayout(); }
Where is my fault? The "IsMdiContainer"-property of the (parent-)form ist set to true. Is there an C# sample project for docking forms by the ultradockmanager?
I tried similar code and I also could not get this to work. It looks like it may be a bug. I would recommend submitting the issue to the support group: http://ko.infragistics.com/gethelp.