Skip to content

My own development branch of the well known WPF document docking library

License

Notifications You must be signed in to change notification settings

zyj0021/AvalonDock

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 

Repository files navigation

Project
NuGet AvalonDock
NuGet AvalonDock.Themes.Aero
NuGet AvalonDock.Themes.Expression
NuGet AvalonDock.Themes.Metro
NuGet Dirkster.AvalonDock.Themes.VS2010
NuGet Dirkster.AvalonDock.Themes.VS2013

Master Branch

Build statusRelease Continues Integration

AvalonDock

Support this project with a ⭐ -report an issue, or even better, place a pull request 📫 😊

My IDE called Edi is powered by this project.

AvalonDock is a WPF Document and Tool Window layout container that is used to arrange documents and tool windows in similar ways than many well known IDEs, such as, Eclipse, Visual Studio, PhotoShop and so forth. Here are some CodeProject articles:

This repository contains additional bug fixes and a feature added fork from: https://github.com/xceedsoftware/wpftoolkit

Be sure to checkout the Wiki for more details. The repository also contains a Log4Net branch for debugging interactive issues with a close enough branch. There are also Log4Net demo executables in the 3.4.01 (or later) realease for additional debugging fun.

Feature Added - Dark and Light VS 2013 Theme

Please review the Project Wiki to see more demo screenshots. All screenshots below are from the MLib based VS 2013 Dark (Accent Color Gold)/Light (Accent Color Blue) theme on Windows 10. Similar theming results should be possible with other theming libraries since the implementation follow these guidelines.

The Docking Buttons are defined in XAML, which ensures a good looking image on all resolutions, even 4K or 8K, and enables us to color theme consistently with the Window 10 Accent Color.

Description Dark Light
Dock Document
Dock Document
Dock Tool Window
Document
Tool Window

Theming

Using the Xceed.Wpf.AvalonDock.Themes.VS2013 theme is very easy with Dark and Light themes. Just load Light or Dark brush resources in you resource dictionary to take advantage of existing definitions.

    <ResourceDictionary.MergedDictionaries>
        <ResourceDictionary Source="/Xceed.Wpf.AvalonDock.Themes.VS2013;component/DarkBrushs.xaml" />
    </ResourceDictionary.MergedDictionaries>
    <ResourceDictionary.MergedDictionaries>
        <ResourceDictionary Source="/Xceed.Wpf.AvalonDock.Themes.VS2013;component/LightBrushs.xaml" />
    </ResourceDictionary.MergedDictionaries>

These definitions do not theme all controls used within this library. You should use a standard theming library, such as:

to also theme standard elements, such as, button and textblock etc.

Mile Stone History

Patch History for AvalonDock Version 3.5

Fixed Issue about PanesTemplateSelector being ignored

Increased to Version 3.5.1

Fixed Close Button Position in Generic Theme

DockingManager: ModelChange event happens before new LayoutDocumentItem is added

Added resource file for AvalonDock for nl-BE

Fixed Crash while loading FLOATING DOCUMENT

Fixed Crash while loading (Deserialize) a layout with FLOATING DOCUMENT window.

NullReferenceException in LayoutDocumentFloatingWindowControl.OnInitialized: Initialization in 2nd constructor was missing: _model = model; UpdateThemeResources();

Removed unused private field in LayoutAutoHideWindowControl

Prevent crash from setting negative size

Fix for issue #1379 as suggested by RecursiveNerd

Update zh-Hans translation #1383

AvalonDock czech localization #1396

AvalonDock fixed misspelling when serializing DockMinWidth/DockMinHeight

Clear Bindings #1360

Theming ContextMenuEx in Metro

Re-styling this in AvalonDock since the menu on the drop-down button for more documents is otherwise black

Drag and Drop on (scaled) 4K display

Drag and Drop of Document or ToolWindow content does not always work on (scaled) 4K display

Crash Loading (Deserialized) Floating Tool Window Layout

Fixed Crash while loading (Deserialize) a layout from FLOATING tool window. NullReferenceException in LayoutAnchorableFloatingWindowControl.OnInitialized

LayoutRoot doesn't notify change for Children or ChildrenCount #1313

Fixed height of titles of floating windows #1203

Initial AvalonDock Version 3.5

Please review the Patch History page for more information on patches for previously released versions of AvalonDock.

About

My own development branch of the well known WPF document docking library

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Languages

  • C# 99.8%
  • Batchfile 0.2%