Click here to Skip to main content
15,880,796 members
Articles / Desktop Programming / Windows Forms
Article

Multi Document Interface (MDI) tab page browsing with C#

Rate me:
Please Sign up or sign in to vote.
4.44/5 (21 votes)
22 Dec 20051 min read 245.5K   11.3K   112   35
An article on tab page browsing in MDI Windows forms.

Sample Image

Introduction

Multi Document Interface (MDI) tab page browsing has been very popular among many Windows applications especially internet browsers such as Opera, Mozilla, Maxthon and many others. After failing to find an article on it, I decided to write one myself to show any interested reader that creating an MDI tab page browsing can be done with pretty simple but neat coding. All that is needed is a little creativity.

Using the code

The source code is a template of the tab page window application. The template can be used for creating a tab-page capable window program.

The code

First, in the parent form, set the IsMDIContainer property to true. Attach a TabControl component to the form and set the Dock property to Top.

Next, in the child form, create a non-initialized TabControl and a TabPage. Create a property for these two objects. Later, we will see that these two objects will contain references to the TabControl in the parent form and the corresponding child TabPage.

C#
private TabControl tabCtrl;
private TabPage tabPag;

public TabPage TabPag
{
    get
    {
        return tabPag;
    }
    set
    {
        tabPag = value;
    }
}

public TabControl TabCtrl
{
    set
    {
        tabCtrl = value;
    }
}

When the MDI child form is closing, destroy the corresponding tab page.

C#
private void MDIChild_Closing(object sender, System.ComponentModel.CancelEventArgs e)
{
    //Destroy the corresponding Tabpage when closing MDI child form
    this.tabPag.Dispose();

    //If no Tabpage left
    if (!tabCtrl.HasChildren)
    {
        tabCtrl.Visible = false;
    }
}

When the MDI child form is activated, activate the corresponding tab page.

C#
private void MDIChild_Activated(object sender, System.EventArgs e)
{
    //Activate the corresponding Tabpage
    tabCtrl.SelectedTab = tabPag;

    if (!tabCtrl.Visible)
    {
        tabCtrl.Visible = true;
    }
}

When the child form is created, add the reference values of the TabControl and TabPage to its fields.

C#
private void NewMenuItem_Click(object sender, System.EventArgs e)
{
    //Creating MDI child form and initialize its fields
    MDIChild childForm = new MDIChild();
    childForm.Text = "MDIChild " + childCount.ToString();
    childForm.MdiParent = this;

    //child Form will now hold a reference value to the tab control
    childForm.TabCtrl = tabControl1;

    //Add a Tabpage and enables it
    TabPage tp = new TabPage();
    tp.Parent = tabControl1;
    tp.Text = childForm.Text;
    tp.Show();

    //child Form will now hold a reference value to a tabpage
    childForm.TabPag = tp;

    //Activate the MDI child form
    childForm.Show();
    childCount++;

    //Activate the newly created Tabpage
    tabControl1.SelectedTab = tp;
}

When a tab page is selected, activate its corresponding MDI child form.

C#
private void tabControl1_SelectedIndexChanged(object sender, System.EventArgs e)
{
    foreach (MDIChild childForm in this.MdiChildren) 
    {
        //Check for its corresponding MDI child form
        if (childForm.TabPag.Equals(tabControl1.SelectedTab)) 
        {
            //Activate the MDI child form
            childForm.Select();
        }
    }
}

That's all!

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Singapore Singapore
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 5 Pin
karthik reddy mereddy21-Aug-13 20:38
karthik reddy mereddy21-Aug-13 20:38 
GeneralMy vote of 1 Pin
_Dhull 6-Feb-13 23:45
_Dhull 6-Feb-13 23:45 
QuestionThanks you Pin
matafill++c2-Sep-11 1:39
matafill++c2-Sep-11 1:39 
GeneralMy vote of 1 Pin
SkySoftHelper29-Aug-10 14:19
SkySoftHelper29-Aug-10 14:19 
RantRe: My vote of 1 Pin
MatthysDT30-Aug-10 21:47
MatthysDT30-Aug-10 21:47 
QuestionDoesnt not work correctly Pin
santoshkandhukuri27-May-10 3:52
santoshkandhukuri27-May-10 3:52 
Generalmulti-tab app Pin
m_shir19-Apr-10 22:02
m_shir19-Apr-10 22:02 
GeneralA few modifications Pin
see_seA5-Jul-09 8:10
see_seA5-Jul-09 8:10 
Questionvery nice , how can i ? Pin
shiva4it3-Apr-08 19:27
shiva4it3-Apr-08 19:27 
QuestionI want code snippet to close child form using menu Pin
greatonkar25-Oct-07 2:13
greatonkar25-Oct-07 2:13 
GeneralchildCount, FormClosing, and True tabbed layout Pin
cipher_nemo2-Oct-07 7:42
cipher_nemo2-Oct-07 7:42 
QuestionTwo predefined forms Pin
bms747122-Feb-07 13:27
bms747122-Feb-07 13:27 
GeneralMore simple solution and support all child forms Pin
Serdar YILMAZ26-Jan-07 21:43
Serdar YILMAZ26-Jan-07 21:43 
GeneralRe: More simple solution and support all child forms Pin
dfhgesart10-Feb-07 7:35
dfhgesart10-Feb-07 7:35 
Your solution is the correct one. The code presented in this article is too complex and not practical.

Could you submit your solution as an article with project code. It would be much easier to find and to use.
GeneralRe: More simple solution and support all child forms Pin
pbnec28-Oct-08 22:04
pbnec28-Oct-08 22:04 
GeneralMultiple Child Forms Pin
rickst1317-Dec-06 12:56
rickst1317-Dec-06 12:56 
GeneralRe: Multiple Child Forms Pin
A55imilate2-Jan-07 21:26
A55imilate2-Jan-07 21:26 
GeneralRe: Multiple Child Forms Pin
Juver2-Jun-16 0:44
Juver2-Jun-16 0:44 
GeneralNeeds an Open File section [modified] Pin
ArchKaine22-Aug-06 3:03
ArchKaine22-Aug-06 3:03 
GeneralRe: Needs an Open File section Pin
ArchKaine22-Aug-06 7:12
ArchKaine22-Aug-06 7:12 
GeneralCustomising the tab pages Pin
Wardy01234567898-Mar-06 1:59
Wardy01234567898-Mar-06 1:59 
GeneralRe: Customising the tab pages Pin
Wardy01234567898-Mar-06 7:39
Wardy01234567898-Mar-06 7:39 
GeneralRe: Customising the tab pages Pin
Fabian Tang11-Mar-06 23:16
Fabian Tang11-Mar-06 23:16 
GeneralChild form blinks Pin
V1taly28-Feb-06 3:09
V1taly28-Feb-06 3:09 
GeneralRe: Child form blinks Pin
the pink jedi2-Mar-06 17:22
the pink jedi2-Mar-06 17:22 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.