AdonisUI.ClassicTheme 1.1.0

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

// Install AdonisUI.ClassicTheme as a Cake Tool
#tool nuget:?package=AdonisUI.ClassicTheme&version=1.1.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.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories (10)

Showing the top 5 popular GitHub repositories that depend on AdonisUI.ClassicTheme:

Repository Stars
KirillOsenkov/MSBuildStructuredLog
A logger for MSBuild that records a structured representation of executed targets, tasks, property and item values.
4sval/FModel
Unreal Engine Archives Explorer
WolvenKit/WolvenKit
Community Mod editor/creator for REDengine games.
chenxuuu/llcom
🛠功能强大的串口工具。支持Lua自动化处理、串口调试、串口监听、串口曲线、TCP测试、MQTT测试、编码转换、乱码恢复等功能
Bluegrams/Vividl
Modern Windows GUI for youtube-dl/ yt-dlp
Version Downloads Last updated
1.17.1 38,775 9/5/2021
1.17.0 11,064 1/10/2021
1.16.0 8,619 6/28/2020
1.15.0 3,152 5/8/2020
1.14.0 3,219 3/8/2020
1.13.0 1,410 12/30/2019
1.12.1 1,128 10/15/2019
1.12.0 700 10/3/2019
1.12.0-preview2 633 8/17/2019
1.12.0-preview1 523 8/10/2019
1.11.0 1,299 6/23/2019
1.11.0-preview1 534 6/15/2019
1.10.0 1,556 4/16/2019
1.9.0 2,961 3/24/2019
1.8.0 848 3/10/2019
1.7.0 952 2/10/2019
1.6.0 946 1/3/2019
1.5.1 916 11/27/2018
1.5.0 840 11/22/2018
1.4.1 931 10/27/2018
1.4.0 936 10/3/2018
1.3.1 916 9/17/2018
1.3.0 918 9/16/2018
1.2.0 935 9/10/2018
1.1.0 1,229 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.