Click here to Skip to main content
15,867,686 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.3K   317  
A WPF library to easily integrate Windows docking features in applications like VS
<custom:DockableContent x:Class="DockingLibraryDemo.ListWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
	xmlns:custom="clr-namespace:DockingLibrary;assembly=DockingLibrary" 
    Title="List window" Height="300" Width="300" Icon="\Icons\View_remove.ico"
    >
	<Grid>
		<ListBox Name="list" SelectionChanged="OnSelectionChanged">
			<ListBoxItem >Item1</ListBoxItem>
			<ListBoxItem >Item2</ListBoxItem>
			<ListBoxItem >Item3</ListBoxItem>
			<ListBoxItem >Item4</ListBoxItem>
		</ListBox>
	</Grid>
</custom:DockableContent>

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