Click here to Skip to main content
Licence 
First Posted 31 Aug 2004
Views 340,158
Downloads 2,605
Bookmarked 172 times

A Simple C# Toolbar Docking Framework

By | 7 Sep 2004 | Article
An example framework for toolbar handling, written in C#.

Sample Image - ToolBarDock.gif

Introduction

This code snippet includes a simple framework for handling docking toolbars. This framework includes support for:

  • floating/docking bars
  • changing layout of docked bars
  • double-click to switch from docked to floating and back
  • show/hide bar
  • right-click for bar view menu
  • disabling docking using the control key
  • handles any kind of control, not just toolbars

The code runs on Windows XP and VS .NET 2002, but should work on most .NET environments.

Background

The code was written while exploring the .NET framework. Although several toolbar handling implementations are available, I decided to have a go at writing my own. Nevertheless, I hope this article might be of use.

Using the code

Using the code is quite simple. Create a ToolBarManager object, giving it the form where the toolbars may be docked. This form would most likely be your application main form which would also keep the ToolBarManager as a member.

_toolBarManager = new ToolBarManager(this);

The ToolBarManager handles all UI operations on the toolbars and it is also the only class the programmer will access. Adding toolbars is performed by invoking the AddControl method. Different versions of this method are available to allow more control over the positioning of the new toolbar.

// Add toolbar (default position)
_toolBarManager.AddControl(_toolBar1);
// Add toolbar (floating)
_toolBarManager.AddControl(_toolBar2, DockStyle.None);
// Add toolbar (left)
_toolBarManager.AddControl(_toolBar3, DockStyle.Left);
// Add toolbar (left, on the left of _toolBar3)
_toolBarManager.AddControl(_toolBar4, DockStyle.Left, _toolBar3, DockStyle.Left);
// Add control
_toolBarManager.AddControl(_dateTimePicker, DockStyle.Bottom);

Other methods are also available to access the toolbars being handled by the ToolBarManager. Their use is rather straightforward:

  • public ArrayList GetControls() - Returns the set of all the added controls.
  • public bool ContainsControl(Control c) - Returns true if the control is included.
  • public void ShowControl(Control c, bool show) - Shows or hides the control.
  • public void RemoveControl(Control c) - Removes the control.

Points of Interest

The docking behavior is performed by four ToolBarDockArea controls that are added and docked to all four sides of the form. These controls simply perform specific layout handling and automatic resizing according to the controls that are added or changed.

To achieve dragging, the ToolBarManager handles mouse events on all controls added via AddControl. During drags, the ToolBarManager checks, according to the mouse position, if the dragged control should be placed on its own form (floating) or on any of the dock areas.

The control key events are handled via PreFilterMessage.

The appearance of the toolbar (the floating frame and the gripper) are user drawn in the ToolBarDockHolder user control.

History

A history file with detailed information is included in the download, here is a summary.

Version 1.0:
First version by Rogério Paulo.

Version 2.0:
Updates by Martin Müller (aka mav.northwind):

  • ToolBarManager c'tor now takes a ScrollableControl and a Form so that you can define an independent docking region and do not always have to use the form. The form itself is still needed as owner of floating toolbars, though.
  • ToolBarDockHolder now has a new property ToolbarTitle, allowing you to specify an independent name for a floating toolbar. The default is still the control's Text, but the Control.TextChanged event will no longer modify the title.
  • ToolBarDockHolder now has a new property AllowedBorders where you can specify which borders the toolbar is allowed to dock to.
  • ToolBarManager.AddControl() now returns the newly added ToolBarDockHolder, so that it's properties can be modified. The example now includes a MainMenu
  • Modified the size calculation for vertical toolbars with separators

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

About the Author

Rogério Paulo

Web Developer

Portugal Portugal

Member

Rogério Paulo is a software engineer in the domain of industrial information technology since 1999.
He has been mainly involved in product development in the fields of SCADA, engineering toolsets, embedded systems, communication networks and industrial communication protocols.
www.rpaulo.com

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

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionHow to have 'toolbar option' icon at the end of toolbar [modified] PinmemberSports Kuo16:28 7 Jul '10  
GeneralDoes not work in VS9 PinmemberKrischu0:20 3 Dec '09  
GeneralEventHandler Pinmemberh_r_sh15:15 14 May '09  
QuestionIs the demo old? Pinmemberhyping22:38 21 Aug '07  
JokeCongratulation Pinmemberemmanuel303:07 16 Aug '07  
GeneralGUI Design in C# PinmemberHomup22:46 26 Jun '07  
Generala problem from XYZ PinstaffSean Ewington5:47 17 May '07  
GeneralToolbar manager for MDI Pinmemberarmina_20073:20 22 Apr '07  
QuestionUpdate to ToolStrip Pinmemberdanielku158:12 4 Mar '07  
GeneralToolbar Docking problem PinmemberMember #371959622:06 15 Jan '07  
GeneralUsing with UserControl's Pinmemberinfal5:28 7 Nov '06  
GeneralConversion of the ToolBar into a Toolbox control Pinmemberignaciordc5:25 19 Jul '06  
QuestionHow to Creat Navigator bar by C# Pinmembertriluu2:17 22 Jun '06  
Generalgood! Pinmemberqinshihuang4:56 19 Jun '06  
Generalme to get free C# teacher PinmemberHsen Ho16:44 15 Jun '06  
GeneralRe: me to get free C# teacher PinPopularmembermr_lasseter17:06 15 Jun '06  
QuestionPrevent close and context menu from showing? Pinmemberid10t3:36 24 Apr '06  
AnswerRe: Prevent close and context menu from showing? PinmemberHamid Qureshi18:34 24 Apr '06  
GeneralRe: Prevent close and context menu from showing? Pinmemberid10t2:54 25 Apr '06  
QuestionUsage of this code? Pinmembersm@va5:27 22 Mar '06  
AnswerRe: Usage of this code? PinmemberRogério Paulo7:23 26 Mar '06  
QuestionRe: Usage of this code? PinmemberDarkne_Se1:02 29 Jan '07  
AnswerRe: Usage of this code? Pinmembersinsel9:57 17 Jun '08  
GeneralDock Toolbar w.r.t Form PinmemberNCoder921417:10 2 Mar '06  
GeneralAdd multiple control to holder Pinmembervutle9:32 24 Feb '06  

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

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 8 Sep 2004
Article Copyright 2004 by Rogério Paulo
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid