Click here to Skip to main content
15,878,809 members
Articles / Multimedia / GDI+

VisualStudio-Like TabControl

Rate me:
Please Sign up or sign in to vote.
4.91/5 (33 votes)
23 Aug 2016CPOL2 min read 79.7K   7.2K   49   33
Inherits the awesome style of Visual Studio's TabControl for better exploiting

Image 1

Introduction

Visual Studio IDE has a really awesome theme that everyone likes.

One of its best views is its customized and well-maintained TabControl, and that's why I made this usercontrol that looks like the TabControl used in Visual Studio.

Background

I (on an average) spend more than 10 hours using Visual Studio daily so I fell in love with its theme and wondered why don't I release a similar TabControl.

YouTube Video

Youtube

Image 2

Implementation

  • ActiveColor: Highlights the selected TabPage
  • BackTabColor: The color of the background of the TabPage
  • BorderColor: The border color of the control
  • ClosingButtonColor: The color of the closing button "X"
  • HeaderColor: The color of the Header
  • HorizontalLineColor: The color of the horizontal line that passes under the headers
  • SelectedTextColor: The color of the text of the selected page
  • TextColor: The color of the text

 

Layout

Image 3

Using the Code

Using the code is the same for everyone who worked using the normal TabControl before. For more details about the standard TabControl, I suggest you take a look at TabControl MSDN.

Easy Usage

  1. Drag & drop the usercontrol on your Form.
  2. Configure its properties through the properties box:

    Image 4

Advanced Usage

For a better performance and a more dynamic component, you can use many of this control's hidden features, one of them is the CloseButton feature that allows you to close a specific TabPage once you click on the "X" button, but that sounds so familiar and mainstream, so what? Here is the trick. :)

Without writing any line of code, you can make a Yes/No messagebox before closing the TabPage as the following picture shows:

Image 5

Result:

Image 6

Themes

One of the main tasks of this TabControl is to imitate the theme of Visual Studio IDE.

By default, the control's theme is set to Dark-Theme which is a combination of black, gray, blue and white.

In the samples Form, I did add three themes which are: Dark, Light and blue (they are also the standard themes of Visual Studio IDE).

As I did mention, the control is set to dark by default, but to get the blue, light theme or whatever you prefer, you have to edit the colors on your own using the properties window:

Image 7

Light Theme

Image 8

To create a well-customized theme as the light theme, you have to let go of the mouse and use your hands a bit.

Light theme code:

C#
this.visualStudioTabControl1.HeaderColor = Color.FromArgb(237 , 238 , 242);
this.visualStudioTabControl1.ActiveColor = Color.FromArgb(1, 122, 204);
this.visualStudioTabControl1.HorizontalLineColor = Color.FromArgb(1, 122, 204);
this.visualStudioTabControl1.TextColor = Color.Black;
this.visualStudioTabControl1.BackTabColor = Color.WhiteSmoke;
Blue Theme

Image 9

Code:

C#
this.visualStudioTabControl1.HeaderColor = Color.FromArgb(54, 78, 114);
this.visualStudioTabControl1.ActiveColor = Color.FromArgb(247, 238, 153);
this.visualStudioTabControl1.HorizontalLineColor = Color.FromArgb(247, 238, 153);
this.visualStudioTabControl1.selectedTextColor = Color.Black;
this.visualStudioTabControl1.BackTabColor = Color.RoyalBlue;

I preferred writing bare code, but you can accomplish the same task using the properties window as well.

That's all of it, folks ♥ !

Points of Interest

Honestly, when I wrote the code, I used Visual Studio by then, so I was looking at its TabControl and tried my best to copy it. haha :D .

History

  • 6/14/2016: Added a demonstration video
  • 8/23/2016: Fixed some comments

License

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


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

Comments and Discussions

 
AnswerMessage Closed Pin
24-Aug-16 10:56
professionalAlaa Ben Fatma24-Aug-16 10:56 
GeneralRe: WinForms? Pin
tlhIn`toq24-Aug-16 12:14
tlhIn`toq24-Aug-16 12:14 
Questionvs like-tab in vc++ Pin
ericyan7116-Jun-16 4:21
ericyan7116-Jun-16 4:21 
AnswerRe: vs like-tab in vc++ Pin
Alaa Ben Fatma16-Jun-16 16:41
professionalAlaa Ben Fatma16-Jun-16 16:41 
PraiseGreat! I like it! Pin
wmjordan13-Jun-16 16:26
professionalwmjordan13-Jun-16 16:26 
SuggestionRe: Great! I like it! Pin
Alaa Ben Fatma13-Jun-16 16:38
professionalAlaa Ben Fatma13-Jun-16 16:38 
GeneralRe: Great! I like it! Pin
wmjordan13-Jun-16 23:10
professionalwmjordan13-Jun-16 23:10 
QuestionAll images are broken Pin
Mauro Destro12-Jun-16 21:12
professionalMauro Destro12-Jun-16 21:12 
AnswerRe: All images are broken Pin
Alaa Ben Fatma12-Jun-16 21:18
professionalAlaa Ben Fatma12-Jun-16 21:18 

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.