Skip to main content
A newer version of this page is available. .

XtraTabbedMdiManager Class

The component that displays MDI child forms as tabs and provides basic form management features. To create an advanced tabbed UI, use the DocumentManager component instead.

Namespace: DevExpress.XtraTabbedMdi

Assembly: DevExpress.XtraBars.v21.2.dll

NuGet Packages: DevExpress.Win.Design, DevExpress.Win.Navigation

Declaration

public class XtraTabbedMdiManager :
    Component,
    ISupportInitialize,
    IXtraTab,
    IXtraTabProperties,
    IBarAndDockingControllerClient,
    IToolTipControlClient,
    IMdiClientSubclasserOwner,
    IXtraTabPropertiesEx,
    IXtraTabCustomDraw,
    ISupportDXSkinColors,
    IDocumentAdapterFactory,
    ISupportAdornerUIManager,
    IWin32Window,
    IUpdateAdornerUI,
    IScaleDpiProvider,
    IAccessiblePropertiesProvider

The following members return XtraTabbedMdiManager objects:

Remarks

To create an MDI application in Windows Forms, you can do the following:

  • Set the main form’s Form.IsMdiContainer property to true.
  • Create a child form and set its Form.MdiParent property so that it refers to the main form.
  • Display the child form by calling its Show method.

By default, these steps create a regular (native) MDI, where child forms float within the main form.

XtraTabbedMdiManager allows you to easily transform this interface into the tabbed UI, in which each MDI child form is rendered as a tab. You just need to add a XtraTabbedMdiManager component to the main form and ensure that the XtraTabbedMdiManager.MdiParent property refers to this form (this assignment is performed automatically when dropping the XtraTabbedMdiManager component on the form at design time).

Once an MDI child form is displayed using the Show method, a new tab is automatically added to the main form.

CD_XtraTabbedMdiManager

Created tab pages can be accessed through the XtraTabbedMdiManager.Pages collection. Each tab page has a header which can be clicked to switch to this page. The currently active tab page is specified by the XtraTabbedMdiManager.SelectedPage property. End-users can also switch between pages via the CTRL+TAB/CTRL+SHIFT+TAB keys. The order in which pages cycle is specified by the XtraTabbedMdiManager.SetNextMdiChildMode property. To cycle through the pages using custom rules, handle the XtraTabbedMdiManager.SetNextMdiChild event.

The following are the main control features:

Example

This example shows how to use an XtraTabbedMdiManager component to implement the tabbed interface in an MDI application.

The Load event handler of the main form (MDI Parent) binds an XtraTabbedMdiManager object to the form via the XtraTabbedMdiManager.MdiParent property.

The example creates a bar with the New command. An MDI child form created by this command is automatically displayed as a tab by the XtraTabbedMdiManager.

The XtraTabbedMdiManager.PageAdded event handler customizes tooltips of created tab pages.

image

using DevExpress.XtraBars;
using DevExpress.XtraTabbedMdi;
using System;
using System.Windows.Forms;

namespace WindowsFormsApplication4 {
    public partial class Form1 : Form {
        public Form1() {
            InitializeComponent();
        }

        XtraTabbedMdiManager mdiManager;

        private void Form1_Load(object sender, EventArgs e) {
            // Create a Bar Manager that will display a bar of commands at the top of the main form.
            BarManager barManager = new BarManager();
            barManager.Form = this;
            // Create a bar with a New button.
            barManager.BeginUpdate();
            Bar bar = new Bar(barManager, "My Bar");
            bar.DockStyle = BarDockStyle.Top;
            barManager.MainMenu = bar;
            BarItem barItem = new BarButtonItem(barManager, "New");
            barItem.ItemClick += new ItemClickEventHandler(barItem_ItemClick);
            bar.ItemLinks.Add(barItem);
            barManager.EndUpdate();
            // Create an XtraTabbedMdiManager that will manage MDI child windows.
            mdiManager = new XtraTabbedMdiManager(components);
            mdiManager.MdiParent = this;
            mdiManager.PageAdded += MdiManager_PageAdded;

        }

        private void MdiManager_PageAdded(object sender, MdiTabPageEventArgs e) {
            XtraMdiTabPage page = e.Page;
            page.Tooltip = "Tooltip for the page " + page.Text;
        }

        int ctr = 0;
        void barItem_ItemClick(object sender, ItemClickEventArgs e) {
            // Create an MDI child form.
            Form2 f = new Form2();
            f.Text = "Child Form " + (++ctr).ToString();
            f.MdiParent = this;
            f.Show();
        }
    }
}

Inheritance

See Also