Click here to Skip to main content
15,861,168 members
Articles / Desktop Programming / WPF

Building a docking window management solution in WPF

Rate me:
Please Sign up or sign in to vote.
4.50/5 (2 votes)
27 Dec 2010CPOL7 min read 55.9K   21   20
How to build a docking window management solution in WPF

Window docking is a familiar functionality in multi-windows applications. As a user interface developer, this behavior has always charmed me and so I thought of developing the same functionality in my own WPF toolkit. I know there are many implementations of similar solutions out there, some even open source, but my aim was to take this personal project as a challenge and learning opportunity.

I should also mention that the docking solution I have implemented is part of a bigger WPF toolkit that I am building on an ongoing basis under my company MixModes Inc, however I intend to keep it open source and royalty free project. To preview the full feature set of this library, you can visit my blog here.

Many existing implementations of window docking solutions have floating windows as separate windows managed under MDI parent window. However I have kept floating windows contained strictly within parent window as I intend to port this code to Silverlight soon.

You may download the source code here.

Anatomy of Synergy Toolkit

MixModes Synergy toolkit consists of the following top level projects:

  • MixModes.Synergy.Resources – Contains image and language resources
  • MixModes.Synergy.Themes – Defines default themes for user controls, custom windows, colors, brushes and text themes
  • MixModes.Synergy.Utilities – Common utilities
  • MixModes.Synergy.VisualFramework – Contains behaviors, adorners, commands, user controls, docking framework and other WPF specific functionality
  • Synergy – Sample project highlighting features of the toolkit

Anatomy of a Dockable Window

To understand window docking solution, it is necessary to understand the very primitive control that drives it all – the dockable window. A dockable window is a special window that in addition to content and title can be in following several states:

  1. Pinned state – Dockable window can be pinned to the side of parent window to have consistent visibility. Usually frequently used content is pinned for easier and constant access.

    image

  2. Auto hidden state – Less frequently used windows can be auto hidden so when mouse is not hovering over them, they collapse into a condensed form (which I refer to as header). When mouse hovers over the headers, full window slides out from the docked side.

    image

  3. Document state – When used as a document, dockable windows can merge as tab items within a tab control.

    image

  4. Floating – Usual floating windows

    image

Docking window support is provided by DockPane control that is a derivative of HeaderedContentControl. In addition to Header and Content properties that it inherits from HeaderedContentControl, it also contains the following properties:

  • Icon – Icon for the docked window
  • CondencedDockPanelTemplate – Template for condensed DockPane
  • CondencedDockPanel – Condensed form of DockPane
  • DockPaneState – State of the dock pane

DockPane also contains the following events:

  • Close – Close event
  • TogglePin – Toggling of pin / auto-hide button
  • HeaderDrag – Notification that user has started to drag header (title) of the DockPane

Default theme for DockPane is defined in the DockPane.xaml resource dictionary within MixModes.Synergy.Themes project.

Document Containers

DockPane(s) are contained within document containers. Document container is modeled via DocumentContainer class which is derivative of ContentControl. DocumentContainer can be in one of the following (mutually exclusive) states:

  • Empty DocumentContainer does not contain any DockPane
  • ContainsDocuments DocumentContainer contains one or more DockPane(s) as documents
  • SplitHorizontally DocumentContainer is split horizontally
  • SplitVertically - DocumentContainer is split vertically

image

DocumentContainer is complex in terms of its template since it is required to represent either a split view or a tabbed view. I have used a persistent TabControl within the template that is hidden if Content property is ever non-null. Content of-course is used exclusively to contain split views via Grid with two children DocumentContainer.

DocumentContainer contains the following properties:

  • State – State of the DocumentContainer
  • Documents – Contains documents represented in TabControl
  • DocumentsTab TabControl containing documents
  • DockIllustrationPanel – This is a panel which contains docking illustration points indicating to the user where a content should be docked. If user drags a DockPane to any one of these points, it gets docked at the respective position. The image below shows content of the DockIllustrationPanel:

    image

DocumentContainer contains the following methods:

  • AddDockPane(DockPane, ContentDockPoint) – Adds a DockPane as a docked window
  • AddDocumentContainers(IEnumerable<DocumentContainer>, bool) – Splits and add child DocumentContainers
  • AddDocument(DockPane) – Adds a DockPane as a tabbed document
  • RemoveDocument(DockPane) – Removes a DockPane as a tabbed document

The template of DocumentContainer contains the following visuals in layers (bottom visuals are in increasing Z-Order):

  • TabControl (PART_DOCUMENTS) – Bound to Documents property of DocumentContainer
  • ContentPresenter – This is where split children are added
  • Grid (PART_DOCK_POINTS) – Panel for hosting dock illustration points
  • Grid (PART_DOCK_ILLUSTRATION) DockIllustrationPanel for illustrating future docking via cues

Windows Manager

Windows manager is the component that binds DockPanel(s) and DocumentContainer(s) together to provide window management functionality in applications. In addition, window manager contains auto-hide and pinned dock points on all four window sides so DockPane(s) can be pinned or auto hidden outside of the DocumentContainer(s). WindowsManager also contains the root DocumentContainer that can host documents in tab control or nested-split DocumentContainer instances hosting documents.

WindowsManager has the following properties:

  • DockPaneIllustrationStyle – Illustration for docking a window within WindowsManager or DocumentsContainer
  • DockIllustrationContentStyle – Illustration for merging documents while dragging a DockPane in TabControl
  • ActiveWindowsManager Static property indicating a WindowsManager undergoing the drag operation
  • DraggedPane DockPane that is being dragged
  • <Orientation>WindowHeaders StackPanel containing condensed auto-hidden DockPane(s)
  • <Orientation>PinnedWindows DockPanel containing pinned DockPane(s)
  • DocumentContainer – Root document container
  • DockingIllustrationPanel – Docking illustration panel for future pinned DockPanel(s)
  • PopupArea DockPanel where auto-hidden DockPane(s) slide out when mouse hovers upon the condensed headers
  • FloatingPanel Canvas that contains floating DockPane(s)
  • DockingPanel DockPanel that contains dock points for pinned windows as shown in image below:

    image

WindowsManager has the following methods:

  • AddPinnedWindow(DockPane, Dock) – Adds a pinned DockPane
  • AddAutoHideWindow(DockPane, Dock) – Adds an auto-hidden DockPane
  • AddFloatingWindow(DockPane) – Adds a floating DockPane
  • RemoveDockPane(DockPane) – Removes a DockPane from (pinned, auto-hidden or floating portion of ) WindowsManager
  • Clear – Clears the WindowManager of all DockPane(s)
  • StartDockPaneStateChangeDetection – Starts state monitoring for DraggedPane
  • StopDockPaneStateChangeDetection – Stops state monitoring for DraggedPane

How It All Works Together

WindowsManager constantly monitors the state change of DockPane. When a DockPane drag is detected, it is placed on the FloatingPanel canvas of WindowsManager as a floating window that can be dragged around. During a drag of a DockPane hit testing is turned off on the DockPane so mouse events can flow down to controls below it such as WindowsManager and DocumentContainer.

For orchestrating drag and drop and docking functionality, I have used a behavior driven approach. The idea is to expose functional end-points (such as methods and properties) on visual entities such as DockPane, DocumentContainer and WindowsManager and use behaviors to orchestrate and call these functional end-points. This approach also resulted in manageable-encapsulated components that were easier to trace and test.

Both WindowsManager and DocumentContainer have dock illustration grid containing the docking behavior. DockPointBehavior behavior illustrates pinned docking illustration on  WindowsManager whereas ContentDockBehavior illustrates splitting and tab merging illustration on DocumentContainer.

Using the Code

Using WindowsManager is extremely simple:

  • Import the namespace in the XAML:
    xmlns:visualFx="http://mixmodes.com/visualFx"
  • Drop the WindowsManager in the XAML:
    <visualFx:WindowsManager x:Name="WindowsManager"/>
  • Start creating DockPane and insert them within WindowsManager / DocumentContainer:
    C#
    DockPane pane = new DockPane(); 
    pane.Header = … 
    pane.Content = …. 
    WindowsManager.AddPinnedWindow(pane, Dock.Top); 
    // OR 
    WindowsManager.AddAutoHideWindow(pane, Dock.Left); 
    // OR 
    // Assuming DocumentContainer is either in Empty or ContainsDocuments state 
    WindowsManager.DocumentContainer.AddDocument(pane); 

Serializing Window State

Out of the box, Synergy provides XML serialization of window states through XmlWindowsManagerSerializer and XmlWindowsManagerDeserializer classes. Custom serialization is supported via specialization of base classes WindowsManagerSerializer and WindowsManagerDeserializer respectively.

XML serialization of WindowsManager using XmlWindowsManagerSerializer requires two pieces of information during construction:

  • DockPane writer – An Action<XmlElement, DockPane> instance that can write additional metadata about a DockPane to the XmlElement.
  • Document writer – A Func<DocumentContent, string> instance that takes in a DocumentContent and returns a string representation of the content.
    Note: DocumentContent.DockPane property returns the associated DockPane, however the Header and Content properties of DockPane are set to null. To access Header and Content property, use the Header and Content properties of DocumentContent instance directly.

Once XmlWindowsManagerSerializer instance is created, a call to Serialize(Stream, WindowsManager) method serializes WindowsManager to the stream.

Similar to serialization process, deserialization process requires an instance of Action<DockPane, string> within the constructor of XmlWindowsManagerDeserializer to de-serialize a DockPane from previously saved string representation. Deserialization does not require additional Action to realize DocumentContent since DocumentContent is inherently a serialization wrapper for DockPane.

Once XmlWindowsManagerDeserializer instance is created, a call to Deserialize(Stream, WindowsManager) deserializes the WindowsManager to previously saved state.

All the docking functionality can be exercised by using the sample app (Synergy project) with the source code. Any comments or suggestions or bug-reports are as usual always welcome. Happy coding!

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) MixModes Inc. | Research In Motion
Canada Canada
Ashish worked for Microsoft for a number of years in Microsoft Visual Studio (Architect edition) and Windows Live division as a developer. Before that he was a developer consultant mainly involved in distributed service development / architecture. His main interests are distributed software architecture, patterns and practices and mobile device development.

Currently Ashish serves as a Technical Lead at RIM leading next generation BlackBerry media experience and also runs his own company MixModes Inc. specializing in .NET / WPF / Silverlight technologies. You can visit MixModes at http://mixmodes.com or follow it on Twitter @MixModes

In his free time he is an avid painter, hockey player and enjoys travelling. His blog is at: http://ashishkaila.serveblog.net

Comments and Discussions

 
QuestionValue cannot be null Pin
BpsTheCool4-Aug-16 15:59
BpsTheCool4-Aug-16 15:59 
QuestionAdding DockPane in XAML Pin
enricke13-Mar-13 8:23
enricke13-Mar-13 8:23 
QuestionSource code required for Building a docking window management solution in WPF Pin
Member 780335527-Dec-12 20:27
Member 780335527-Dec-12 20:27 
QuestionDock Panel Pin
Member 796352117-Jul-11 21:15
Member 796352117-Jul-11 21:15 
QuestionTabControl within a Dockpane may vanish when moving Pin
Decipator10-Apr-11 10:36
Decipator10-Apr-11 10:36 
QuestionCan Closing be disabled? Pin
Decipator9-Apr-11 2:51
Decipator9-Apr-11 2:51 
AnswerRe: Can Closing be disabled? Pin
Ashish Kaila9-Apr-11 3:21
Ashish Kaila9-Apr-11 3:21 
GeneralRe: Can Closing be disabled? Pin
Decipator10-Apr-11 10:18
Decipator10-Apr-11 10:18 
QuestionMixModes.Synergy.VisualFramework makes VS2010 UI Designer stop working Pin
Decipator7-Apr-11 11:41
Decipator7-Apr-11 11:41 
AnswerRe: MixModes.Synergy.VisualFramework makes VS2010 UI Designer stop working Pin
Ashish Kaila7-Apr-11 16:30
Ashish Kaila7-Apr-11 16:30 
GeneralRe: MixModes.Synergy.VisualFramework makes VS2010 UI Designer stop working Pin
Decipator7-Apr-11 22:35
Decipator7-Apr-11 22:35 
Generalcorrect way to use WindowsManager.DocumentContainer.AddDocument(pane); Pin
gumo1912-Jan-11 7:13
gumo1912-Jan-11 7:13 
A very good article

when i am adding a line
WindowsManager.DocumentContainer.AddDocument(pane);

I get the following error

Error 3 'MixModes.Synergy.VisualFramework.Windows.WindowsManager' does not contain a definition for 'DocumentContainer' and no extension method 'DocumentContainer' accepting a first argument of type 'MixModes.Synergy.VisualFramework.Windows.WindowsManager' could be found (are you missing a using directive or an assembly reference?)


Can you help me understand how to add document as tabitem.


Thanks,

GM










DockPane pane = new DockPane();
pane.Header = …
pane.Content = ….
WindowsManager.AddPinnedWindow(pane, Dock.Top);
// OR
WindowsManager.AddAutoHideWindow(pane, Dock.Left);
// OR
// Assuming DocumentContainer is either in Empty or ContainsDocuments state
WindowsManager.DocumentContainer.AddDocument(pane);
GeneralRe: correct way to use WindowsManager.DocumentContainer.AddDocument(pane); Pin
Ashish Kaila12-Jan-11 7:18
Ashish Kaila12-Jan-11 7:18 
GeneralRe: correct way to use WindowsManager.DocumentContainer.AddDocument(pane); Pin
gumo1912-Jan-11 8:24
gumo1912-Jan-11 8:24 
GeneralRe: correct way to use WindowsManager.DocumentContainer.AddDocument(pane); Pin
Ashish Kaila12-Jan-11 8:42
Ashish Kaila12-Jan-11 8:42 
BugRe: correct way to use WindowsManager.DocumentContainer.AddDocument(pane); Pin
jkumar.ooty8-Nov-11 23:06
jkumar.ooty8-Nov-11 23:06 
GeneralRe: correct way to use WindowsManager.DocumentContainer.AddDocument(pane); Pin
rhinestone8910-Oct-12 20:12
rhinestone8910-Oct-12 20:12 
GeneralGood! Pin
xiang_yan27-Dec-10 17:45
xiang_yan27-Dec-10 17:45 
GeneralRe: Good! Pin
Ashish Kaila27-Dec-10 17:53
Ashish Kaila27-Dec-10 17:53 
GeneralRe: Good! Pin
gumo1912-Jan-11 8:14
gumo1912-Jan-11 8:14 

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.