Dock
A docking layout system.
About
Dock is a docking layout system for Avalonia applications. Use of Dock is governed by the MIT License.
Building Dock
First, clone the repository or download the latest zip.
git clone https://github.com/wieslawsoltes/Dock.git
git submodule update --init --recursive
Build using IDE
- Visual Studio Community 2019 for
Windows
builds.
Open Dock.sln
in selected IDE and run Build
command.
Build using .NET Core
Open up a terminal prompt and execute the commands.
Target framework netstandard2.0
:
dotnet build src/Dock.Avalonia/Dock.Avalonia.csproj -c Release -f netstandard2.0
NuGet
Dock is delivered as a NuGet package.
You can find the packages here NuGet and install the package like this:
Install-Package Dock.Avalonia
Install-Package Dock.Avalonia.Themes.Default
Install-Package Dock.Model.ReactiveUI
or by using nightly build feed:
- Add
https://www.myget.org/F/dock-nightly/api/v2
to your package sources - Alternative nightly build feed
https://pkgs.dev.azure.com/wieslawsoltes/GitHub/_packaging/Nightly/nuget/v3/index.json
- Update your package using
Dock
feed
and install the package like this:
Install-Package Dock.Avalonia -Pre
Install-Package Dock.Avalonia.Themes.Default -Pre
Install-Package Dock.Model.ReactiveUI -Pre
Packages
- Dock.Model - Core docking library.
- Dock.Model.INPC - Core docking library implementation using INPC.
- Dock.Model.ReactiveUI - Core docking library implementation using ReactiveUI.
- Dock.Model.Avalonia - Core docking library implementation using Avalonia.
- Dock.Avalonia - Avalonia docking implementation.
- Dock.Avalonia.Themes.Default - Default themes for Avalonia docking implementation.
Resources
License
Dock is licensed under the MIT license.