Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
320
dock manager unpin
posted

 hi, i have this sample code running on 2 forms;

            UltraTree tree1 = new UltraTree();
            UltraTree tree2 = new UltraTree();
            UltraListView ulv = new UltraListView();

            DockableControlPane tree1Pane = new DockableControlPane("treeView1", "Tree View 1", tree1);
            tree1Pane.ToolTipCaption = "Tree View 1 Caption";
            tree1Pane.ToolTipTab = "Tree View1 Tab Caption";

            DockableControlPane list1Pane = new DockableControlPane("listView1", "List View 1", ulv);
            list1Pane.ToolTipCaption = "List View 1 Caption";
            list1Pane.ToolTipTab = "List View 1 Tab Caption";

            DockableGroupPane groupPane = new DockableGroupPane();
            groupPane.Panes.AddRange(new DockablePaneBase[ { tree1Pane, list1Pane });
            groupPane.ChildPaneStyle = ChildPaneStyle.TabGroup;

            DockableControlPane tree2Pane = new DockableControlPane("treeView2", "Tree View 2", tree2);
            tree2Pane.ToolTipCaption = "Tree View 2 Caption";
            tree1Pane.ToolTipTab = "Tree View2 Tab Caption";

            DockAreaPane dockAreaPane = new DockAreaPane(DockedLocation.DockedLeft);
            dockAreaPane.Panes.AddRange(new DockablePaneBase[ { groupPane, tree2Pane });
            dockAreaPane.ChildPaneStyle = ChildPaneStyle.HorizontalSplit;
            dockAreaPane.Size = new Size(200, -1);
            this.ultraDockManager1.DockAreas.Add(dockAreaPane);

 

on the one form , when unpin, the dock disappears completely.. (cannot mouse-hover and retrieve it). how can i fix it?

 

thanks in advance for much needed help.

Parents
No Data
Reply
  • 44743
    posted

    I tried using this code in a sample but was unable to reproduce the issue. I tried unpinning the various panes in different orders as well. It's possible the issue has been fixed already. I would recommend submitting the issue to the support group so it can be investigated: http://ko.infragistics.com/gethelp.

Children
No Data