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

TabStrips: A TabControl in the Visual Studio 2005 way!

Rate me:
Please Sign up or sign in to vote.
4.82/5 (78 votes)
5 Dec 20063 min read 478.9K   12.5K   252   133
A TabControl in the Visual Studio 2005 style, which supports correct Right-To-Left (RTL) and Left-To-Right (LTR) drawing.

Sample Image - TabStrip.gif

Introduction

Besides all the new features of Visual Studio, there is a distinct TabControl with a new style like no other. The code here tries to build up a control which behaves like the tab pages of VS.NET 2005.

Building a TabControl consists of building two controls: a TabControl itself, which is a container control, but only accepts TabPages as a containing control. This could be done by assigning a Designer class to the TabControl. Now, TabPage is a container control too, but can accept all kinds of controls hosted in it.

The Visual Studio TabControl slightly differs from a normal tab control, because it only shows as much TabPages as fits the width of the control. All the other TabPages are available via a context menu appearing by clicking the glyph icon. Selecting a TabPage from the menu brings it to position 0 of the TabPageCollection, so that it appears as the first TabPage.

Right-To-Left Rendering of Controls

Adding the RTL drawing feature to a control requires additional coding for drawing. The developer should handle the correct drawing behavior when the control sets its RightToLeft property to Yes. The Graphics class has a method to draw strings. In RTL control drawing, it is important to use the below overload with the StringFormat setting its FormatFlags flag to DirectionRightToLeft. Note that since the StringFormat class is not a lightweight class, you should dispose it after using. It's more convenient to use a using block to achieve this:

Image 2

C#
e.Graphics.DrawString(string, Font, Brush, Rectangle, StringFormat);
C#
using (HeavyWeightDisposableObject obj = 
       new HeavyWeightDisposableObject()) 
{
   //Do Operation and leave; will automatically dispose
}
C#
//
// paint method of the control
//

using(StringFormat fmt = new StringFormat())
{
    fmt.FormatFlags |= StringFormatFlags.DirectionRightToLeft;
    g.DrawString("Test String...", this.Font, 
                 SystemBrushes.Control, TextRectangle, fmt);
}

Image 3

Design-Time Integration

For design-time behavior of the TabStrip control, I'm using a sub-class of the ParentControlDesigner class. It is nice to add the design-time verbs (e.g., Add/Remove TabPages) to this class, which makes life for the developer easier.

An additional step here is to remove the properties of the Control class which we do not want to be visible during design-time, by overriding the PreFilterProperties of the designer:

C#
protected override void PreFilterProperties(
          System.Collections.IDictionary properties)
{
   base.PreFilterProperties(properties);

   properties.Remove("DockPadding");
   properties.Remove("DrawGrid");
   properties.Remove("Margin");
}

In a normal TabControl, the user can change the selected tab by clicking on the TabItems during design-time. To do this, we could override the GetHitTest(Point pt) method of the designer, but I don't know why it crashes my VS.NET IDE, so I had to think of another way. That's when tapping on Windows messages came in handy. Just override the WndProc(ref Message msg) method, and listen for the MouseLeftClick message (0x201), and check for a hit-test on TabItems:

C#
protected override void WndProc(ref Message msg)
{
   if (msg.Msg == 0x201)
   {
      Point pt = Control.PointToClient(Cursor.Position);
      FATabStripItem itm = Control.GetTabItemByPoint(pt);
         
      if (itm != null)
      {
         Control.SelectedItem = itm;
         ArrayList selection = new ArrayList();
         selection.Add(itm);
         ISelectionService selectionService = 
           (ISelectionService)GetService(typeof(ISelectionService));
         selectionService.SetSelectedComponents(selection);
      }
   }

   base.WndProc(ref msg);
}

Points of Interest

If you want to use these controls on .NET 1.1, you'll have to change the use of ContextMenuStrip, which is a new control in .NET 2, with the old ContextMenu control. All the painting is done in GDI+, so it should work on Windows 98 or Windows 2000, although it is not tested yet.

For further releases or any suggestions/comments/feedbacks, please leave me a message at my address, or visit my web site.

History

Version 2

  • Bug fix: Problem with the Designer which made controls added to FATabStripItems disappear.
  • Bug fix: Disposing of heavy-weight objects when the control is being disposed (e.g., fonts, image, etc.) (reported by #sne#).
  • Bug fix: Problem with anchoring of controls/usercontrols in a FATabStripItems (reported by #sne#).
  • Added: FATabStripItems can now have an image which will be displayed on menu (thanks to danielku15).
  • Added: A HitTest method which will report which part of the control is clicked by the user.
  • Changes: Refactoring Selecting method of FATabItem.
Version 1
  • Providing base classes, and a TabStrip control with the Visual Studio 2005 theme implemented.
  • Providing a control-designer for TabStrip and TabStripItems.

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
Software Developer (Senior) Readify
Australia Australia
Working on both Java and .NET Technology, I have developed various enterprise level applications on both platforms. Currently, I am working as a Senior Software Developer at Readify which is a leading company on .NET technology in Australia.

Comments and Discussions

 
QuestionRe: Update to New Version (But when?) Pin
oggelito2-Dec-06 23:14
oggelito2-Dec-06 23:14 
QuestionDesign time bugs Pin
Russ Harding27-Nov-06 10:24
Russ Harding27-Nov-06 10:24 
AnswerRe: Design time bugs Pin
Hadi Eskandari27-Nov-06 19:46
professionalHadi Eskandari27-Nov-06 19:46 
GeneralRe: Design time bugs Pin
Russ Harding30-Apr-07 4:05
Russ Harding30-Apr-07 4:05 
GeneralA Problem about SelectedItem && selected attribution! Pin
czlc15-Nov-06 18:39
czlc15-Nov-06 18:39 
GeneralRemove the TabStrip control bug on the FATabStripItem Pin
aimine29-Oct-06 16:29
aimine29-Oct-06 16:29 
NewsAdding images for the menu Pin
Danielku158-Oct-06 4:23
Danielku158-Oct-06 4:23 
GeneralMemory leak in this control Pin
#sne#12-Sep-06 21:01
#sne#12-Sep-06 21:01 
Hello,

There are 3 problems that you might run into:

- no response from the author that might be able to determine the problem so your problem is really your problem....D'Oh! | :doh:

- docking/anchoring of controls inside a tab

(see: Problem with anchoring within a user control [modified])

- not disposing of tabstripitems or graphics object? causes memory leak

This tabstrip control is a cool flashy looking control. However i used this control in a niet so uncommon way; i dynamically added tabstripitems with controls and ran into a problems of niet disposing the tabstripitems when closing the form with the tabcontrol. It might be a simple problem with dispose or not cleaning up a grapics object or so.

I would recommend not to use this control randomly unless you have tested it in a your 'real' would application prototype. I made this error by creating a simple testproject to determine if i could use this control.

The code is available so it can be fixed, it is easy to switch to this control so if there is an update that would be great.


GeneralFATabStripDesigner updated Pin
Laurent Muller22-Aug-06 2:07
professionalLaurent Muller22-Aug-06 2:07 
QuestionProblem with anchoring within a user control [modified] Pin
#sne#27-Jul-06 21:59
#sne#27-Jul-06 21:59 
GeneralRe: Problem with anchoring within a user control Pin
thilo7828-Jul-06 6:28
thilo7828-Jul-06 6:28 
AnswerProblem with anchoring within a user control Pin
Vasya - dragon15-Oct-06 0:10
Vasya - dragon15-Oct-06 0:10 
GeneralRe: Problem with anchoring within a user control Pin
#sne#15-Oct-06 21:10
#sne#15-Oct-06 21:10 
QuestionCommercial use? Pin
Maruu21-Jul-06 0:44
Maruu21-Jul-06 0:44 
AnswerRe: Commercial use? Pin
Hadi Eskandari22-Jul-06 21:03
professionalHadi Eskandari22-Jul-06 21:03 
GeneralRe: Commercial use? Pin
Maruu22-Jul-06 22:14
Maruu22-Jul-06 22:14 
QuestionAuto selecting added/inserted tabs Pin
ykessler18-Jul-06 6:50
ykessler18-Jul-06 6:50 
AnswerRe: Auto selecting added/inserted tabs Pin
Hadi Eskandari22-Jul-06 21:07
professionalHadi Eskandari22-Jul-06 21:07 
General"PageControl" Pin
Agent2511-Jul-06 20:36
Agent2511-Jul-06 20:36 
GeneralRe: "PageControl" Pin
davidbeseke2-Mar-07 4:55
davidbeseke2-Mar-07 4:55 
GeneralRe: "PageControl" Pin
Agent259-Jul-07 2:25
Agent259-Jul-07 2:25 
GeneralRe: "PageControl" Pin
AZ_Cowboy7-Oct-09 13:10
AZ_Cowboy7-Oct-09 13:10 
GeneralTabPages and changing selected tab in run time Pin
SrleIA2-Jul-06 10:01
SrleIA2-Jul-06 10:01 
GeneralRe: TabPages and changing selected tab in run time Pin
h.eskandari2-Jul-06 21:23
h.eskandari2-Jul-06 21:23 
GeneralRe: TabPages and changing selected tab in run time Pin
SrleIA3-Jul-06 6:07
SrleIA3-Jul-06 6:07 

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.