New to Telerik UI for WinForms? Download free 30-day trial

Reorder tabbed documents in RadDock

Environment

Product Version Product Author
2019.1.219 RadDock for WinForms Desislava Yordanova

Description

When you add/show a new document, it is placed considering the RadDock.DocumentManager.DocumentInsertOrder property. The default value is DockWindowInsertOrder.InFront. Hence, the documents are placed in front. In other words, when you make visible a DocumentWindow, it is located at first position. Then, when you make visible each next DocumentWindow, it is placed in front of the previously added/shown window. This behavior is by design.

Solution

You can change the order of the tabbed documents by using the DocumentTabStrip.Controls.SetChildIndex method passing the desired window and index. Here is a sample code snippet which result is illustrated below:

reorder-tabbed-documents-in-raddock

Reordering tabs


        private void radButton1_Click(object sender, EventArgs e)
        {
            this.documentWindowArchive.CloseAction = Telerik.WinControls.UI.Docking.DockWindowCloseAction.Hide;
            this.documentWindowOverview.CloseAction = Telerik.WinControls.UI.Docking.DockWindowCloseAction.Hide;

            this.documentWindowArchive.DockState = Telerik.WinControls.UI.Docking.DockState.Hidden;
            this.documentWindowOverview.DockState = Telerik.WinControls.UI.Docking.DockState.Hidden;
        }

        private void radButton2_Click(object sender, EventArgs e)
        {
            this.documentWindowArchive.DockState = Telerik.WinControls.UI.Docking.DockState.TabbedDocument;
            this.documentWindowOverview.DockState = Telerik.WinControls.UI.Docking.DockState.TabbedDocument;
        }

        private void radButton3_Click(object sender, EventArgs e)
        {
            this.documentTabStrip1.Controls.SetChildIndex(this.documentWindowArchive, 0); 
            this.documentTabStrip1.Controls.SetChildIndex(this.documentWindowOverview, 2);
        }
In this article