AdonisUI 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package AdonisUI --version 1.0.0                
NuGet\Install-Package AdonisUI -Version 1.0.0                
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="AdonisUI" Version="1.0.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AdonisUI --version 1.0.0                
#r "nuget: AdonisUI, 1.0.0"                
#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 AdonisUI as a Cake Addin
#addin nuget:?package=AdonisUI&version=1.0.0

// Install AdonisUI as a Cake Tool
#tool nuget:?package=AdonisUI&version=1.0.0                

AdonisUI 💪

Lightweight UI toolkit for WPF applications offering classic but enhanced windows visuals

Light color scheme overview Dark color scheme overview

What's included

  • Default styles with templates for most common WPF controls
  • Additional styles for convenience that can be used as required
  • Two color schemes (light and dark) that can be used in custom styles as well
  • Support for changing the color scheme at runtime
  • Support for additional custom color schemes
  • Few custom controls for common use cases

Getting started

  1. Reference AdonisUI and AdonisUI.ClassicTheme
  2. Add resources to your application in your App.xaml like so:
<Application xmlns:adonisUi="clr-namespace:AdonisUI;assembly=AdonisUI">
    <Application.Resources>
        <ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary Source="{x:Static adonisUi:ResourceLocator.LightColorScheme}"/>
                <ResourceDictionary Source="{x:Static adonisUi:ResourceLocator.ClassicTheme}"/>
            </ResourceDictionary.MergedDictionaries>
        </ResourceDictionary>
    </Application.Resources>
</Application>
  1. Derive your window's style from the default style of AdonisUI like so:
<Window.Style>
    <Style TargetType="Window" BasedOn="{StaticResource {x:Type Window}}"/>
</Window.Style>

Concepts

ComponentResourceKeys

Resources that are provided by AdonisUI have a ComponentResourceKey assigned to make use of them in a simple way. Resources exist in the categories Colors, Brushes, Dimensions and Styles. The foreground brush of the current color scheme for example can be used by referring to its resource key like Foreground="{DynamicResource {x:Static adonisUi:Brushes.ForegroundBrush}}". ComponentResourceKeys allow auto-completion with IntelliSense which comes in handy when exploring the available resources.

Layers

WIP

Product Compatible and additional computed target framework versions.
.NET Framework net461 is compatible.  net462 was computed.  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.

This package has no dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on AdonisUI:

Package Downloads
AdonisUI.ClassicTheme

Styles implementing AdonisUI's theme definitions to provide classic look and feel.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on AdonisUI:

Repository Stars
4sval/FModel
Unreal Engine Archives Explorer
Version Downloads Last updated
1.17.1 55,366 9/5/2021
1.17.0 12,110 1/10/2021
1.16.0 9,352 6/28/2020
1.15.0 3,324 5/8/2020
1.14.0 3,604 3/8/2020
1.13.0 1,608 12/30/2019
1.12.1 1,294 10/15/2019
1.12.0 898 10/3/2019
1.12.0-preview2 799 8/17/2019
1.12.0-preview1 694 8/10/2019
1.11.0 1,637 6/23/2019
1.11.0-preview1 699 6/15/2019
1.10.0 1,940 4/16/2019
1.9.0 3,439 3/24/2019
1.8.0 1,140 3/10/2019
1.7.0 1,264 2/10/2019
1.6.0 1,218 1/3/2019
1.5.1 1,253 11/27/2018
1.5.0 1,146 11/22/2018
1.4.1 1,211 10/27/2018
1.4.0 1,262 10/3/2018
1.2.0 1,230 9/16/2018
1.1.0 1,245 9/10/2018
1.0.0 1,769 6/2/2018

First release of this library. It provides two color schemes, usage of component resource keys, base styles for many WPF controls and a basic layering system.