Click here to Skip to main content
15,886,110 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;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;

namespace DockingLibrary
{
    /// <summary>
    /// ========================================
    /// .NET Framework 3.0 Custom Control
    /// ========================================
    ///
    /// Follow steps 1a or 1b and then 2 to use this custom control in a XAML file.
    ///
    /// Step 1a) Using this custom control in a XAML file that exists in the current project.
    /// Add this XmlNamespace attribute to the root element of the markup file where it is 
    /// to be used:
    ///
    ///     xmlns:MyNamespace="clr-namespace:DockingLibrary"
    ///
    ///
    /// Step 1b) Using this custom control in a XAML file that exists in a different project.
    /// Add this XmlNamespace attribute to the root element of the markup file where it is 
    /// to be used:
    ///
    ///     xmlns:MyNamespace="clr-namespace:DockingLibrary;assembly=DockingLibrary"
    ///
    /// You will also need to add a project reference from the project where the XAML file lives
    /// to this project and Rebuild to avoid compilation errors:
    ///
    ///     Right click on the target project in the Solution Explorer and
    ///     "Add Reference"->"Projects"->[Browse to and select this project]
    ///
    ///
    /// Step 2)
    /// Go ahead and use your control in the XAML file. Note that Intellisense in the
    /// XML editor does not currently work on custom controls and its child elements.
    ///
    ///     <MyNamespace:DockingButton/>
    ///
    /// </summary>
    public class DockingButton : Button
    {
        static DockingButton()
        {
            //This OverrideMetadata call tells the system that this element wants to provide a style that is different than its base class.
            //This style is defined in themes\generic.xaml
            DefaultStyleKeyProperty.OverrideMetadata(typeof(DockingButton), new FrameworkPropertyMetadata(typeof(DockingButton)));

            DockableContentProperty = DependencyProperty.Register("DockableContent", typeof(DockableContent), typeof(DockingButton));
            DockingButtonGroupProperty = DependencyProperty.Register("DockingButtonGroup", typeof(DockingButtonGroup), typeof(DockingButton));
            DockProperty = DependencyProperty.Register("Dock", typeof(Dock), typeof(DockingButton));
        }

        public static DependencyProperty DockableContentProperty;

        public DockableContent DockableContent
        {
            get
            {
                return GetValue(DockableContentProperty) as DockableContent;
            }
            set
            {
                SetValue(DockableContentProperty, value);
            }
        }

        public static DependencyProperty DockingButtonGroupProperty;

        public DockingButtonGroup DockingButtonGroup
        {
            get
            {
                return GetValue(DockingButtonGroupProperty) as DockingButtonGroup;
            }
            set
            {
                SetValue(DockingButtonGroupProperty, value);
                Dock = value.Dock;
            }
        }

        public static DependencyProperty DockProperty;

        public Dock Dock
        {
            get
            {
                return (Dock)GetValue(DockProperty);
            }
            set
            {
                SetValue(DockProperty, value);
            }
        }

    }
}

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