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.
<PackageVersion Include="AdonisUI" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="AdonisUI" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version 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.
#:package AdonisUI@1.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=AdonisUI&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=AdonisUI&version=1.0.0
                    
Install as a Cake Tool

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 (14)

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

Repository Stars
4sval/FModel
Unreal Engine Archives Explorer
KirillOsenkov/MSBuildStructuredLog
A logger for MSBuild that records a structured representation of executed targets, tasks, property and item values.
Bluegrams/Vividl
Modern Windows GUI for youtube-dl/ yt-dlp. Download videos from hundreds of websites.
chenxuuu/llcom
🛠功能强大的串口工具。支持Lua自动化处理、串口调试、WinUSB、串口曲线、TCP测试、MQTT测试、编码转换、乱码恢复等功能
WolvenKit/WolvenKit
Community Mod editor/creator for REDengine games.
irusanov/ZenTimings
overtools/OWLib
DataTool is a program that lets you extract models, maps, and files from Overwatch.
FromDarkHell/BL3SaveEditor
A desktop based save and profile editor for Borderlands 3
lindexi/lindexi_gd
博客用到的代码
ME3Tweaks/ME3TweaksModManager
Mod Manager for Mass Effect Original Trilogy and Mass Effect Legendary Edition
Drommedhar/DlssUpdater
DlssUpdater is a tool to conveniently configure all 3 instances of DLSS libraries (Upscaling, Ray Reconstruction, Frame Generation) used by your games.
LaughingLeader-DOS2-Mods/DivinityModManager
A mod manager for Divinity: Original Sin - Definitive Edition.
mann1x/CPUDoc
lakent/fnsync
Mirror of https://gitee.com/holmium/fnsync
Version Downloads Last Updated
1.17.1 75,584 9/5/2021
1.17.0 13,005 1/10/2021
1.16.0 9,883 6/28/2020
1.15.0 3,532 5/8/2020
1.14.0 3,879 3/8/2020
1.13.0 1,834 12/30/2019
1.12.1 1,537 10/15/2019
1.12.0 1,125 10/3/2019
1.12.0-preview2 1,035 8/17/2019
1.12.0-preview1 931 8/10/2019
1.11.0 1,882 6/23/2019
1.11.0-preview1 927 6/15/2019
1.10.0 2,218 4/16/2019
1.9.0 3,726 3/24/2019
1.8.0 1,381 3/10/2019
1.7.0 1,482 2/10/2019
1.6.0 1,458 1/3/2019
1.5.1 1,486 11/27/2018
1.5.0 1,408 11/22/2018
1.4.1 1,458 10/27/2018
1.4.0 1,502 10/3/2018
1.2.0 1,491 9/16/2018
1.1.0 1,526 9/10/2018
1.0.0 2,366 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.