Click here to Skip to main content
Click here to Skip to main content

FireFox-like Tab Control

By , 24 Jun 2008
 

Screenshot - image001.png

Introduction

Recently I came across a requirement for a tab control to be closed from the header itself. This means the user doesn't need to switch to any tab page in order to close it. The perfect example for this one is Firefox browser. In Firefox, the user can open as many tabs as he wants and he can close any tab at any time without opening the tab. I tried Googling a solution and didn't find anything that was exactly what I wanted. Then I thought about implementing my own tab control with the same functionality. So finally, here is the control.

Using the Code

The control enables the designer to add/remove tab pages like a normal tab control with the new look and feel. The classes that support this features are:

  1. TabCtlEx.cs (inherited from System.Windows.Forms.TabControl)
  2. TabPage.cs (inherited from System.Windows.Forms.TabPage)

Using this control is straightforward, like the .NET tab control.

private MyControlLibrary.TabCtlEx userControl11;
    TabPageEx tabPage1;
    TabPageEx tabPage2;
    TabPageEx tabPage3;

private TabPageEx tabPage4;
    this.userControl11 = new MyControlLibrary.TabCtlEx();
    this.tabPage1 = new MyControlLibrary.TabPageEx(this.components);
    this.tabPage2 = new MyControlLibrary.TabPageEx(this.components);
    this.tabPage3 = new MyControlLibrary.TabPageEx(this.components);
    this.tabPage4 = new MyControlLibrary.TabPageEx(this.components);
    this.Controls.Add(this. userControl11);

Drawing the Close Button on Each Tab Header

This requires you to override the existing OnDrawItem() function in the .NET tab control.

/// <summary>
/// override to draw the close button
/// </summary>
/// <param name="e"></param>
protected override void OnDrawItem(DrawItemEventArgs e)
{
    RectangleF tabTextArea = RectangleF.Empty;
    for(int nIndex = 0 ; nIndex < this.TabCount ; nIndex++)
    {
        if( nIndex != this.SelectedIndex )
        {
            /*if not active draw ,inactive close button*/
            tabTextArea = (RectangleF)this.GetTabRect(nIndex);
            using(Bitmap bmp = new Bitmap(GetContentFromResource(
                "closeinactive.bmp")))
            {
                e.Graphics.DrawImage(bmp,
                    tabTextArea.X+tabTextArea.Width -16, 5, 13, 13);
            }
        }
        else
        {
            tabTextArea = (RectangleF)this.GetTabRect(nIndex);
            LinearGradientBrush br = new LinearGradientBrush(tabTextArea,
                SystemColors.ControlLightLight,SystemColors.Control,
                LinearGradientMode.Vertical);
            e.Graphics.FillRectangle(br,tabTextArea);

            /*if active draw ,inactive close button*/
            using(Bitmap bmp = new Bitmap(
                GetContentFromResource("close.bmp")))
            {
                e.Graphics.DrawImage(bmp,
                    tabTextArea.X+tabTextArea.Width -16, 5, 13, 13);
            }
            br.Dispose();
        }
        string str = this.TabPages[nIndex].Text;
        StringFormat stringFormat = new StringFormat();f
        stringFormat.Alignment = StringAlignment.Center; 
        using(SolidBrush brush = new SolidBrush(
            this.TabPages[nIndex].ForeColor))
        {
            /*Draw the tab header text
            e.Graphics.DrawString(str,this.Font, brush,
            tabTextArea,stringFormat);
        }
    }
}

Here, the close button is actually the bitmap image drawn over each tab header. So, in just giving the look and feel of a button used in Firefox, three different bitmap images are used:

  • closeinactive.bmp
  • close.bmp
  • onhover.bmp

These images are embedded with the control and extracted using reflection. There is also a function used to get the embedded image resource. This function returns the stream and creates an image by passing the stream to a bitmap class, as described above.

/// <summary>
/// Get the stream of the embedded bitmap image
/// </summary>
/// <param name="filename"></param>
/// <returns></returns>
private Stream GetContentFromResource(string filename)
{
    Assembly asm = Assembly.GetExecutingAssembly();
    Stream stream =asm.GetManifestResourceStream(
        "MyControlLibrary."+filename);
    return stream;
}

Firefox asks the user to confirm whether he wants to close the tab page or not. I like to have the same functionality for my control, since sometimes the user may press the close button accidentally and doesn't want to lose the changes done. This is accomplished by setting the Boolean property.

private bool confirmOnClose = true;
public bool ConfirmOnClose
{
    get
    {
        return this.confirmOnClose;
    }
    set
    {
        this.confirmOnClose = value;
    }
}

Property

ConfirmOnClose confirms with a message box before closing the tab page. Here is the code to check if the clicked area is inside the bitmap rectangle or not.

protected override void OnMouseDown(MouseEventArgs e)
{
    RectangleF tabTextArea = (RectangleF)this.GetTabRect(SelectedIndex);
    tabTextArea = 
        new RectangleF(tabTextArea.X+tabTextArea.Width -16,5,13,13);
    Point pt = new Point(e.X,e.Y);
    if(tabTextArea.Contains(pt))
    {
        if(confirmOnClose)
        {
            if(MessageBox.Show("You are about to close "+
                this.TabPages[SelectedIndex].Text.TrimEnd()+
                " tab. Are you sure you want to continue?","Confirm close",
                MessageBoxButtons.YesNo) == DialogResult.No)
            return;
        }
        //Fire Event to Client
        if(OnClose != null)
        {
            OnClose(this,new CloseEventArgs(SelectedIndex));
        }
    }
}

Whenever the close button on the tab header is pressed, the control will fire an OnClose() event to the client with the clicked tab index as the argument. This will give some more flexibility to the client to do something before closing the tab.

Conclusion

It's just yet another tab control that provides some flexibility and an improved user interface. I found this functionality very useful in some scenarios. Feedbacks are welcome!

History

Updated with menu button functionality. The above description is just for adding the close button, but the article source code contains the actual implementation for both the close button and the menu button. The major advantage with this control is that menu item functionality is applied to each tab page instead of tab control. In other words, we can have different menu items for different tab pages.

If there is no menu attached with any of the tab pages, it won't display the menu button. The below picture shows that tabPage3 doesn't have a menu attached and so doesn't display the Menu button for that tab page only.

Screenshot - image004.jpg

The actual code for attaching the menu item is:

this.tabPage1.Menu
    = contextMenuStrip1;
………
this.tabPage2.Menu
    = contextMenuStrip1;
………
this.tabPage3.Menu
    = contextMenuStrip1;
………
this.tabPage4.Menu
    = contextMenuStrip1;

Either you can assign the same menu item or a different menu item for each tab page.

History

  • 16 August, 2007 -- Original version posted
  • 28 August, 2007 -- Article and download updated
  • 24 June, 2008 -- source updated

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

vijayaprasen
Software Developer (Senior)
United States United States
Member
worst fellow working as a consultant in a Telecom company (USA)
knows little bit on C,C++ and C# with 5+ years of experience.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionUpdatesmemberkiquenet.com26 Feb '13 - 21:59 
QuestionNot Understanding the code.memberRaudraRudra24 Jan '13 - 20:50 
QuestionNicememberghvnd20 Apr '12 - 22:36 
QuestionIs something wrong in logic?memberehtesham.dotnet22 Dec '11 - 22:27 
QuestionHow can i resize the horizental of the Tab ConTrolmembervnZest28 Sep '11 - 16:25 
Questionsetting multirow property problemmemberdohboy6420 Sep '11 - 6:30 
GeneralMy vote of 2memberkore_sar12 Apr '11 - 1:26 
GeneralMy vote of 5memberGood_shepherd30 Mar '11 - 20:24 
GeneralGreat...here are fixes for the width issue and the string vertical alignmentmemberJohn Nagle16 Feb '11 - 3:39 
Generalabout MenumemberKommrad Homer2 Aug '10 - 4:13 
GeneralCoolmemberPeramikalaza20 Apr '10 - 13:02 
GeneralRe: Coolmembervijayaprasen12 Jun '10 - 17:05 
Generalplz help mememberstorm111115 Apr '10 - 16:03 
GeneralMy vote of 1memberGary PR4 Feb '10 - 8:16 
GeneralRe: My vote of 1membervijayaprasen2 Mar '10 - 11:33 
GeneralNice workmemberoddessa374 Feb '10 - 4:05 
GeneralRe: Nice workmembervijayaprasen2 Mar '10 - 11:34 
QuestionUser Controls zoomedmembermerkatore8 May '09 - 6:47 
AnswerRe: User Controls zoomedmembervijayaprasen12 May '09 - 13:07 
QuestionFlickeringmemberAKDM14 Apr '09 - 8:19 
QuestionRe: Flickeringmemberdansam10017 Apr '09 - 9:47 
AnswerRe: FlickeringmemberHerman Vos19 Apr '09 - 18:26 
GeneralRe: Flickeringmemberdansam10019 Apr '09 - 18:36 
GeneralRe: Flickering [modified]memberHerman Vos20 Apr '09 - 9:00 
GeneralRe: Flickeringmemberdansam10021 Apr '09 - 3:11 
AnswerRe: FlickeringmemberDelphiCoder22 Nov '09 - 19:39 
AnswerRe: FlickeringmemberXuSCo9 Sep '10 - 8:28 
GeneralHelp With EventsmemberAnaliaIbargoyen16 Oct '08 - 6:18 
AnswerRe: Help With Eventsmembervijayaprasen10 Nov '08 - 10:36 
QuestionWhat type of event...memberandryw1 Aug '08 - 5:00 
Generalplz help mememberJKR00718 Jul '08 - 0:05 
GeneralRe: plz help memembervijayaprasen18 Jul '08 - 1:54 
Generalset tab sizememberMember 235184330 Jun '08 - 23:42 
GeneralRe: set tab sizememberIlíon1 Jul '08 - 1:10 
GeneralRe: set tab sizememberMember 23518431 Jul '08 - 19:22 
GeneralI'm sorry [modified]memberIlíon2 Jul '08 - 7:18 
GeneralRe: set tab sizememberMember 23518431 Jul '08 - 20:32 
GeneralRe: set tab sizememberIlíon29 Jul '08 - 8:59 
GeneralRe: set tab sizememberMember 235184329 Jul '08 - 19:37 
GeneralHCI issuememberDerek Bartram25 Jun '08 - 1:17 
GeneralRe: HCI issuemembervijayaprasen28 Jun '08 - 4:57 
GeneralExceptionmembergborges20 May '08 - 10:11 
GeneralRe: Exceptionmembervijayaprasen20 May '08 - 13:34 
GeneralRe: Exception; suggested solution [modified]memberIlíon27 Jun '08 - 4:26 
GeneralRe: Exception; suggested solutionmembersth_Weird17 Feb '09 - 23:18 
GeneralRe: Exception; suggested solutionmemberIlíon18 Feb '09 - 0:14 
QuestionOwner projectmembereusta12 Apr '08 - 3:06 
GeneralRe: Owner projectmembervijayaprasen12 Apr '08 - 14:17 
GeneralExceptionmemberGnanadurai12 Dec '07 - 2:09 
GeneralRe: Exceptionmembervijayaprasen25 Dec '07 - 11:16 

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

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 24 Jun 2008
Article Copyright 2007 by vijayaprasen
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid