Aak.Shell.UI.Themes.AvalonDock 4.71.1

Suggested Alternatives

AakStudio.Shell.UI.Themes.AvalonDock

There is a newer version of this package available.
See the version list below for details.
dotnet add package Aak.Shell.UI.Themes.AvalonDock --version 4.71.1
NuGet\Install-Package Aak.Shell.UI.Themes.AvalonDock -Version 4.71.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Aak.Shell.UI.Themes.AvalonDock" Version="4.71.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Aak.Shell.UI.Themes.AvalonDock --version 4.71.1
#r "nuget: Aak.Shell.UI.Themes.AvalonDock, 4.71.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Aak.Shell.UI.Themes.AvalonDock as a Cake Addin
#addin nuget:?package=Aak.Shell.UI.Themes.AvalonDock&version=4.71.1

// Install Aak.Shell.UI.Themes.AvalonDock as a Cake Tool
#tool nuget:?package=Aak.Shell.UI.Themes.AvalonDock&version=4.71.1

Aak.Shell.UI.Themes.AvalonDock

Aak.Shell.UI.Themes package for AvalonDock.

NetFramework NetCore

Downloads PackageVersion

Bilibili

  • VisualStudio 2019 (Blue)
  • VisualStudio 2019 (Dark)
  • VisualStudio 2019 (Light)
  • VisualStudio 2022 (Blue)
  • VisualStudio 2022 (Dark)
  • VisualStudio 2022 (Light)

💡 Install

  • Install using NuGet Package Manager in Visual Studio.
  • .NET CLI : dotnet add package Aak.Shell.UI.Themes.AvalonDock

🚀 Quick Start

Add the namespace in xaml xmlns:avalondockThemes="http://aak.shell.ui.themes.avalondock"

Apply the theme in DockingManger

<DockingManager>
    <DockingManager.Theme>
        <avalondockThemes:VisualStudio2022Dark />
    </DockingManager.Theme>
</DockingManger>

Or Merge ResourceDictionary


<ResourceDictionary Source="/Aak.Shell.UI.Themes.AvalonDock;component/Themes/VisualStudio2019/BlueTheme.xaml" />


<ResourceDictionary Source="/Aak.Shell.UI.Themes.AvalonDock;component/Themes/VisualStudio2019/DarkTheme.xaml" />


<ResourceDictionary Source="/Aak.Shell.UI.Themes.AvalonDock;component/Themes/VisualStudio2019/LightTheme.xaml" />


<ResourceDictionary Source="/Aak.Shell.UI.Themes.AvalonDock;component/Themes/VisualStudio2022/BlueTheme.xaml" />


<ResourceDictionary Source="/Aak.Shell.UI.Themes.AvalonDock;component/Themes/VisualStudio2022/DarkTheme.xaml" />


<ResourceDictionary Source="/Aak.Shell.UI.Themes.AvalonDock;component/Themes/VisualStudio2022/LightTheme.xaml" />

✨ Styles and Templates

All AvalonDock Control's Styles and Templates have an x:Key.

So you can use BasedOn in Style, And change the properties of the control's style. (See App.xaml)

Before doing this, you need to merge a theme ResourceDictionary (Any Theme).

<ResourceDictionary.MergedDictionaries>
    <ResourceDictionary Source="/Aak.Shell.UI.Themes.AvalonDock;component/Themes/VisualStudio2022/DarkTheme.xaml" />
</ResourceDictionary.MergedDictionaries>

Then we change the properties of the Document Floating Window to allow minimization and show in TaskBar and separate from the MainWindow.



<Style
    x:Key="{x:Type avalonDockControls:LayoutDocumentFloatingWindowControl}"
    BasedOn="{StaticResource DocumentWellWindowBaseStyle}"
    TargetType="{x:Type avalonDockControls:LayoutDocumentFloatingWindowControl}">
    <Setter Property="AllowMinimize" Value="True" />
    <Setter Property="ShowInTaskbar" Value="True" />
    <Setter Property="OwnedByDockingManagerWindow" Value="False" />
</Style>

And we can modify the ItemTemplate of NavigatorWindow's List.

<DataTemplate x:Key="NavigatorWindowListBoxItemDataTemplate">
    <Grid>
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="16" />
            <ColumnDefinition Width="150" />
        </Grid.ColumnDefinitions>
        <TextBlock
            Grid.Column="1"
            Margin="4,0,0,0"
            Text="Custom ItemTemplate Test"
            TextTrimming="CharacterEllipsis" />
    </Grid>
</DataTemplate>

NavWindowListItemTemplate

See for other styles Aak.Shell.UI.Themes.AvalonDock/Styles

📷 Screenshots

(Form Aak.Shell.UI.Showcase)

Screenshot1

Screenshot2

Screenshot3

Screenshot4

📢 Known issue

Custom styles and templates don't work when using themes in DockingManager.

<Style
    x:Key="{x:Type avalonDockControls:LayoutDocumentFloatingWindowControl}"
    BasedOn="{StaticResource DocumentWellWindowBaseStyle}"
    TargetType="{x:Type avalonDockControls:LayoutDocumentFloatingWindowControl}">
    <Setter Property="AllowMinimize" Value="True" />
    <Setter Property="ShowInTaskbar" Value="True" />
    <Setter Property="OwnedByDockingManagerWindow" Value="False" />
</Style>


<DockingManager>
    <DockingManager.Theme>
        <avalondockThemes:VisualStudio2022Dark />
    </DockingManager.Theme>
</DockingManger>

Email: Noisrev@outlook.com

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net6.0-windows7.0 is compatible.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.1 is compatible. 
.NET Framework net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
4.71.1.4 822 1/14/2023
4.71.1.2 732 1/9/2023
4.71.1.1 758 1/2/2023
4.71.1 715 12/28/2022
4.71.1-beta1228 519 12/27/2022
4.70.3-beta1225 543 12/24/2022
4.70.3-beta1224 466 12/24/2022