Click here to Skip to main content
15,880,427 members
Articles / Programming Languages / Visual Basic
Article

A Visual Studio 2005-like Interface

Rate me:
Please Sign up or sign in to vote.
4.89/5 (167 votes)
22 Jan 2007CPOL4 min read 1.1M   11K   503   252
Apply a theme that resembles Visual Studio 2005 to the DockPanel Suite, using an Extender class.
Sample Image - DockPanelSkin.png

Overview

It's now been awhile since programs like Opera, Firefox and other software introduced MDI tabbed interfaces. Unluckily, there are not too many free components that allow .NET developers to create such interfaces. I was searching the internet for a long time before discovering the DockPanel Suite, a wonderful and fully customizable component from Weifen Luo. This component is available on Sourceforge, here.

Introduction

This article shows how the DockPanel component can be customized, implementing an Extender class. The attached example creates a Visual Studio 2005 like interface against version 1.0 of the DockPanel.

Copyright

Weifen Luo is the owner of the copyright for the DockPanel Suite, which includes the Extender class, the object of this article.

Background

This article is based around the DockPanel Suite library and it requires at least a basic knowledge of this. Please refer to the References paragraph to find more information about it. A good knowledge of the System.Drawing classes and functions is also required.

The Extender Class

DockPanel accepts customizations through five classes:

  • AutoHideTab represents a single tab used when the content is in the autohide state.
  • AutoHideStrip draws tabstrips and tabs when the content is in the autohide state.
  • DockPaneCaption draws the caption pane when the contents are tool windows.
  • DockPaneTab represent a single tab used when the content is a document window or a tool window.
  • DockPaneStrip draws tabstrips and tabs when the content is a document window or a tool window.

For convenience, these classes are enclosed in an Extender class. The following sections describe the component parts and the relative modules you can customize.

AutoHideStrip and AutoHideTab

The autohide strips can appear at the four borders of the main form and they are activated by the MouseOver event. The tabstrip will be visible only if at least one content is in the autohide state. When the tabs are docked to the left or to the right, the resulting tabs are rotated 90 degrees.

Following is a screenshot of a form docked to the top:

Image 2

Here is another example of a form docked to the bottom:

Image 3

The drawing of tabstrips and tabs is done by the class AutoHideStripFromBase. The painting methods are mainly the following:

  • OnPaint handles the OnPaint event of the control.
  • DrawTabStrip draws the tabstrips with a right orientation and all the contained tabs.
  • DrawTab draws a single tab.

DockPaneCaption

DockPaneCaption represents the form border when the form is docked and it normally contains a title, a button to close the window and a button to set the window to the autohide state. The Visual Studio 2005 like interface also contains a button to manipulate the window state through a context menu.

The following is a screenshot of DockPaneCaption:

Image 4

The drawing of the caption is done by the class DockPaneCaptionFromBase. The painting methods are mainly the following:

  • OnPaint handles the OnPaint event of the control.
  • DrawCaption draws the background and the caption text.

DockPaneStrip and DockPaneTab

DockPaneStrip represents the tab area shown when the content is a tool window or a document. There are many differences between these two regarding the tab shape and other behaviour. An example is hiding the tabstrip in the case of a single content. The drawing of tabstrips and tabs is done by the class DockPaneStripFromBase. The following examples will clarify these differences.

Example of a tabstrip that shows document tabs:

Image 5

Example of a tabstrip that shows document tabs with an icon and the overflow symbol:

Image 6

Example of a tabstrip that shows tool window tabs:

Image 7

The painting methods for the document tabstrip are the following:

  • OnPaint handles the OnPaint event of the control.
  • DrawTabStrip_Document draws the background.
  • DrawTab_Document draws the shape, icon and text.

The painting methods for the tool window tabstrip are the following:

  • OnPaint handles the OnPaint event of the control.
  • DrawTabStrip_ToolWindow draws the background.
  • DrawTab_ToolWindow draws the shape, icon, and text.

Using the Code

To apply the Extender to an instance of DockPanel, insert the following code into the Form_Load event of your form, replacing the name of the control with yours.

VB
Extender.SetSchema(DockPanel1, Extender.Schema.FromBase)

Final Notes

I hope that you find this article useful. If you find this article stupid, annoying or incorrect, express this fact by rating the article as you see fit. In the end, you're very welcome at any moment to freely contribute to this project by suggesting improvements or by submitting code or other materials.

Credits

Thanks to Weifen Luo for providing the community with the DockPanel component. If you like this component, you may want to make a donation to Weifen Luo here.

References

History

  • 3rd June 2006: first submission
  • 20th July 2006: bug fix (the MdiParent property doesn't need to be set)
  • 20nd January 2007: updated download

License

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


Written By
Software Developer (Senior)
Italy Italy
I am 40 years old and I've been working with C++, Visual Basic .NET, C# and ASP.NET. I have a large experience in Industrial Automation solutions, but I've worked also as Web developer and DBA. I like to share knowledge and projects with other people.

Comments and Discussions

 
QuestionShape of tab headers Pin
Bogdan Vintila10-Nov-15 5:10
Bogdan Vintila10-Nov-15 5:10 
Questionthank you Pin
Member 119705078-Sep-15 22:57
Member 119705078-Sep-15 22:57 
QuestionHow to add forms and controls to them Pin
Code-Hunt21-Dec-12 0:31
Code-Hunt21-Dec-12 0:31 
Questioni need a tutorial Pin
vahnvallain30-Aug-11 20:17
vahnvallain30-Aug-11 20:17 
GeneralMy vote of 5 Pin
TweakBird24-Feb-11 17:51
TweakBird24-Feb-11 17:51 
GeneralMy vote of 5 Pin
alifellod4-Nov-10 10:04
alifellod4-Nov-10 10:04 
Generalconvert this code to C# Pin
sa.alavifar23-Oct-10 22:07
sa.alavifar23-Oct-10 22:07 
GeneralMy vote of 5 Pin
sa.alavifar23-Oct-10 21:59
sa.alavifar23-Oct-10 21:59 
GeneralUnable to set max size of form without grey strip running along the bottom Pin
LindseyTantrum3-Sep-10 3:09
LindseyTantrum3-Sep-10 3:09 
GeneralRe: Unable to set max size of form without grey strip running along the bottom Pin
LindseyTantrum23-Sep-10 0:38
LindseyTantrum23-Sep-10 0:38 
QuestionPaint TitleBar Pin
Eugene Kogel23-Apr-10 16:12
Eugene Kogel23-Apr-10 16:12 
GeneralWorking with WeifenLuo.WinFormsUI.Docking.dll version 2.2.0.0 Pin
nisad13-Oct-09 4:24
nisad13-Oct-09 4:24 
Questionwill this work with Visual Basic 2008 Express Edition? Pin
Member 363971330-Sep-09 14:39
Member 363971330-Sep-09 14:39 
QuestionEvent Problem? No LostFocus and Leave Events on floating Windows? Pin
Skeletor2314-Sep-09 4:51
Skeletor2314-Sep-09 4:51 
GeneralFor hide tab when have a single Document Pin
Pasalino9-Sep-09 3:40
Pasalino9-Sep-09 3:40 
QuestionHow can i change automatically all locale files used in each one of the forms ? Pin
agelospanagiotakis31-Aug-09 0:33
agelospanagiotakis31-Aug-09 0:33 
QuestionHow Can I Impement Dock content to Left by Extendering the DocumentTabStripLocation Enumerable with Adding Left property? Pin
hjzhou29-Aug-09 21:12
hjzhou29-Aug-09 21:12 
Generalgreat work. =) Pin
Kiko.1714-Aug-09 22:40
professionalKiko.1714-Aug-09 22:40 
GeneralCommunication between docks Pin
hakimgada5-Jul-09 21:20
hakimgada5-Jul-09 21:20 
GeneralDoubts.. wud be sweet if someone cud help me , please Pin
Gagan111813-Jun-09 15:43
Gagan111813-Jun-09 15:43 
Generalimplement VOIP Pin
mzamoandris1-Jun-09 4:05
mzamoandris1-Jun-09 4:05 
Questionhow to doc different forms Pin
ghalibkhan14-May-09 22:05
ghalibkhan14-May-09 22:05 
General[Message Deleted] Pin
NONAMEOK21-Mar-09 18:56
NONAMEOK21-Mar-09 18:56 
GeneralRe: How to add things Pin
ChimmyChanga2-May-09 13:08
ChimmyChanga2-May-09 13:08 
GeneralRe: How to add things Pin
ChimmyChanga2-May-09 13:09
ChimmyChanga2-May-09 13:09 

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.