Skip to content

felbsn/NetDock.WPF

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NetDock WIP

a modern docking windows approach for WPF

NetDock Demo (click to image to watch library in action or action before the second action)

Usage in XAML

add namespace as shown

 xmlns:netdock="clr-namespace:NetDock;assembly=NetDock"

create surface for docking

 <netdock:DockSurface x:Name="dockSurface"></netdock:DockSurface>

you can add your dock contents programmatically

  var item = new DockItem(yourCustomWpfUserControl)
  {
      TabName = "tab & window title"
  };
  dockSurface.Add(item , DockDirection.Bottom);

for windows, use dock item with DockWindow

DockItem item = GetMyDockItem();
var win = new DockWindow(item);
// win.Show() or some other action etc

About

a modern docking windows approach for wpf

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages