Click here to Skip to main content
Licence CPOL
First Posted 22 May 2003
Views 233,523
Bookmarked 139 times

Magic Library Docking Manager Designer

By | 2 Nov 2003 | Article
Provides docking support without writing one line of code.

Sample Image - DockingManagerExtender.gif

Introduction

Some days ago as I coded the HelloWorld in C#, there was darkness around me. After crawling through all the articles from CodeProject, there was light. A few days later I got my first version of magic library, from this time my HelloWorld applications looks cool.

Now, much time later, spent millions of hours coding C# in my spare time and on my job, I still use the magic library. With the knowledge gained from using commercial products like Syncfusion Essentiel Tools I felt it's time to write a component for Visual Studio which provides easy access to the great docking features of Magic Library.

Key features

  • You control the docking behavior of your controls in the properties (PropertyGrid).
  • Automatic State Persistence takes care of user customization. The customized layouts are stored in the Isolated Storage.
  • Accessible wrapped DockingManager, all features of future releases of DockingManager are reachable.
  • Needed code is generated by the ©Visual Studio Designer.
  • .NET friendly design with IExtenderProvider.

Background

The component implements the IExtenderProvider interface and wraps a Crownwood.Magic.Docking.DockingManager. The IExtenderProvider extends the controls on your Form with a few of the Crownwood.Magic.Docking.Content properties. At run time the component manages the Content settings for each control and attaches the controls to the wrapped DockingManager.

Using the code

Before you begin, make sure your project has a valid reference to the Magic Library. Go to the Toolbox window, right-click and select Customize Toolbox from the context menu. In the Customize Toolbox dialog, go to the .NET Framework Components tab and select the DockingManagerExtender.dll assembly that you just compiled. Now drop the DockingManagerExtender component to your form.

The component provides the following:

Public Instance Properties

AutomaticStatePersistence Enable or disable the Automatic State Persistence feature. If enabled, the customized docking settings made by the user are persistent by User/Domain/WorkingArea
ContainerControl Gets or sets the object to which the docking manager instance is attached
DockingManager The wrapped Crownwood.Magic.Docking.DockingManager. Direct access to all properties.
InnerControl Sets or gets the Control for which the docking windows will not be allowed to dock inside of the specified control.
OuterControl Sets or gets the Control for which docking windows will not be allowed to dock outside of the specified control.
PlainTabBorder Gets or sets the flag indicating that the appearance is defined as VisualStyle.Plain and this PlainTabBorder property is defined then a full dumped border is drawn around the docking window content.
VisualStyle Gets or sets the VisualStyle which is used to draw content.

Public Instance Methods

LoadConfigFromStream Restores the docking configuration.
ResetAutoPersistent Reset Automatic State Persistence. Changes takes effect after restarting application.
SaveConfigToStream Stores the docking configuration.

Please make sure that the ContainerControl property points to your form, otherwise the component cannot work properly.

Select one of your controls on this form, hit F4 and scroll down to the end in the PropertyGrid. Now you should see new properties like these ones.

After you set ADockingEnable to true, you could change the other properties. This is important, cause if the control is not dock enabled, the other properties are not valid.

If you like to know more about these properties, please refer directly to Magic Docking - VS.NET Style.

ADockingEnable Enables and disables the docking for the control.
CloseButton Enables and disables the close button of the docking window.
DockingStyle Dock style for the control.
FullTitle Text displayed in docking control title.
Icon Icon displayed in tabbed/hide mode.
TabbedMode Indicates if tabbed docking is preferred.
Title Text displayed in tabbed/hide mode.

After enabling docking for your controls, hit F5 to start debugging. If everything went right the controls are docked, finish.

In depth

There are three classes which where used to build this component. For detailed view, please refer to the NDOC generated Help File.

Classes

Class Description
DockingContent Wraps Crownwood.Magic.Docking.Content and extends it with needed properties.
DockingManagerConverter DockingManagerConverter provides a TypeConverter for the Crownwood.Magic.Docking.DockingManager
DockingManagerExtender DockingManagerExtender enhances Crownwood.Magic.Docking.DockingManager for design time. It extends the controls on your form with properties, which defines the docking behavior at run time.

Conclusion

  • The order of the controls in the InitializeComponent() method is important for docking order. If you like to dock two controls (A,B) in tabbed mode on the left side, and another (C) not tabbed on the left upper side, please make sure control (C) comes before (A,B), otherwise the docking order is not correct.
  • Every time you change the docking properties with AutomaticStatePersistence, true, you do not see the changes made directly. The DockingManager overrides the changes made with the stored settings. To solve this problem you should not use AutomaticStatePersistence for development.

Future version and features

The next version should provide real designer support, where you can drag your docking control in the designer. The default layout, specified in the designer, should be stored to a resource file, which is embedded in the assembly.

With such a designer, it's more intuitive to design docking arrangements, but my knowledge about design time components is not at a high level ,(

Links

History

  • 29.10.2003 - Version 1.1 released which supports UserControl's as ContainerControl
  • 27.05.2003 - bug fixed, generated IsolatedStorage path longer than 260 chars in some cases, updated downloads.
  • 24.05.2003 - experimental release

Have fun with it...

License

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

About the Author

Chris Richner

Architect

Switzerland Switzerland

Member

Follow on Twitter Follow on Twitter
Web
 
Biography
  • 1996 - 1998 PC Board PPL, HTML, DHTML, Javascript and ASP
  • 1999 - 2001 coding Centura against Sql Database (Centura,MSSQL,Oracle)
  • 2002 - 2004 C# Windows Forms
  • 2005 - 2006 C# ASP.NET, Windows Forms
  • 2006 - 2009 C#, WCF, WF, WPF
  • 2010 - now C#, Dynamics CRM, Sharepoint, Silverlight
Interests
  • basically coding
  • music
  • chilaxing ,)


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
QuestionCan u pls help me Pinmembervincezed10:34 10 Apr '11  
AnswerRe: Can u pls help me Pinmemberwsfaso4:41 2 Feb '12  
GeneralMy vote of 5 PinmemberElBilo9:12 1 Apr '11  
AnswerRe: My vote of 5 PinmemberChris Richner21:39 17 Aug '11  
QuestionHow to change the dockstate in a content ? PinmemberChen.shaohua20:50 23 Aug '09  
AnswerRe: How to change the dockstate in a content ? PinmemberChris Richner22:45 24 Aug '09  
GeneralRe: How to change the dockstate in a content ? PinmemberChen.shaohua4:36 25 Aug '09  
GeneralCompatible Version with VS2005 PinmemberChallagolla23:37 21 Jul '09  
GeneralRe: Compatible Version with VS2005 PinmemberChris Richner4:33 22 Jul '09  
GeneralRe: Compatible Version with VS2005 PinmemberChallagolla20:05 22 Jul '09  
GeneralRe: Compatible Version with VS2005 PinmemberChris Richner10:41 3 Aug '09  
QuestionHow Free is free? PinmemberFindl_Fantastisch19:59 26 Jun '07  
Generalcapture Dock window Hiding and Showing events PinmemberAmbili_T23:15 17 Apr '07  
GeneralShowing the panels as docked when app starts up. ! PinmemberAmbili_T1:56 12 Apr '07  
AnswerRe: Showing the panels as docked when app starts up. ! PinmemberChris Richner8:31 13 Apr '07  
Hi Ambili_T,
 
To add content use dockingManager.AddContentWithState(content, dockStyle) as Crownwood.Magic.Docking.WindowContent.
Take a look at AttachControls method in DockingManagerExtender.cs line 541.
 
Open DockingManagerExtender.cs, Ctrl + G, 541 Enter... this method docks the controls.
 
myMsg.BehindDaKeys = "Chris Richner";

GeneralRe: Showing the panels as docked when app starts up. ! PinmemberAmbili_T18:41 16 Apr '07  
AnswerRe: Showing the panels as docked when app starts up. ! PinmemberChris Richner7:40 17 Apr '07  
GeneralRe: Showing the panels as docked when app starts up. ! PinmemberAmbili_T20:07 17 Apr '07  
GeneralChange location of docked window PinmemberShakeel Mumtaz0:04 1 Oct '06  
Generalgetting event handler for hide button clicked Pinmemberbhavesh vaghela1:08 7 Feb '06  
QuestionOwn Visualstyles Pinmembervornst13:33 28 Jan '06  
GeneralHelp needed: unable to generate DLL Pinmemberrun149212:49 1 Nov '05  
GeneralRe: Help needed: unable to generate DLL Pinmemberdeloford12:48 5 Jul '06  
GeneralI was just thinkign of this! PinmemberKevin James7:21 26 Oct '05  
GeneralFree Magic library is still available Pinsussmotif820:12 12 Oct '05  

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
Web01 | 2.5.120529.1 | Last Updated 3 Nov 2003
Article Copyright 2003 by Chris Richner
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid