Click here to Skip to main content
15,891,372 members
Articles / Desktop Programming / WPF

WPF Docking Library

Rate me:
Please Sign up or sign in to vote.
4.78/5 (85 votes)
17 Jul 2007CPOL3 min read 1M   24.4K   317  
A WPF library to easily integrate Windows docking features in applications like VS
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows;
using System.Windows.Controls;

namespace DockingLibrary
{
    public enum SplitOrientation
    { 
        Horizontal,
        Vertical
    }
        
    class PaneGroup : IPane
    {
        public IPane First;
        public IPane Second;
        public readonly SplitOrientation Split;

        public PaneGroup(IPane first, IPane second, SplitOrientation split)
        {
            First = first;
            Second = second;
            Split = split;
        }

        #region IPane Membri di

        public bool Hidden
        {
            get { return First.Hidden && Second.Hidden; }
        }


        public void AdjustSize()
        {
            First.AdjustSize();
            Second.AdjustSize();
        }

        private System.Windows.GridLength _width = new GridLength(1, GridUnitType.Star);
        private System.Windows.GridLength _height = new GridLength(1, GridUnitType.Star);

        public System.Windows.GridLength GridWidth
        {
            get
            {
                return _width;
            }
            set
            {
                throw new InvalidOperationException();
            }
        }

        public System.Windows.GridLength GridHeight
        {
            get
            {
                return _height;
            }
            set
            {
                throw new InvalidOperationException();
            }
        }

        public IPane FindPaneFromContent(ManagedContent content)
        {
            IPane pane = First.FindPaneFromContent(content);
            if (pane != null)
                return pane;
            
            pane = Second.FindPaneFromContent(content);
            if (pane != null)
                return pane;

            return null;
        }

        #endregion
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

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


Written By
Systems Engineer
Italy Italy
I bought my first computer in Nov 1991, 21st and I started programming with QBasic under MSDOS.
Today my main interest is developping applications with .NET and HTML5 stack.

Comments and Discussions