AtomicUI.Wpf 1.1.7

dotnet add package AtomicUI.Wpf --version 1.1.7
                    
NuGet\Install-Package AtomicUI.Wpf -Version 1.1.7
                    
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="AtomicUI.Wpf" Version="1.1.7" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AtomicUI.Wpf" Version="1.1.7" />
                    
Directory.Packages.props
<PackageReference Include="AtomicUI.Wpf" />
                    
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 AtomicUI.Wpf --version 1.1.7
                    
#r "nuget: AtomicUI.Wpf, 1.1.7"
                    
#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 AtomicUI.Wpf@1.1.7
                    
#: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=AtomicUI.Wpf&version=1.1.7
                    
Install as a Cake Addin
#tool nuget:?package=AtomicUI.Wpf&version=1.1.7
                    
Install as a Cake Tool

README.md

AtomicUI.WPF

Modern WPF theme for .NET Framework and .NET 9.
Premium Fluent-inspired UI for native WPF desktop applications.

Modern UI. Minimal XAML. 2026-ready. Atomic speed.

Stop making apps that look like the Windows 11 Settings panel. AtomicUI.WPF is the evolution of the Fluent design system — a tactile, high‑end visual language that Microsoft’s default themes simply can’t match.

Beyond flat: glass‑morphism, refractive depth, layered surfaces, and smooth motion that give your app a “future Windows” feel without switching frameworks.

Zero Learning Curve: Styles native WPF controls automatically. No Atomic:Button, no ui:Button, no EditButton — it’s just a normal Button. No custom markup, no redesigning your UI, no wrestling with massive XAML templates just to change a color. Keep your existing XAML — it just looks modern

Better than Microsoft’s defaults: We’ve taken Fluent, polished it, deepened it, and turned it into a premium professional design system that outclasses the .NET 10 themes.

Legacy power: Bring a 2026‑grade UI to apps running on .NET Framework 4.5.1+. No migration to .NET 10, WinUI, or MAUI required.

Explore AtomicUI.WPF in a real desktop application with live controls, animations, themes, layouts, and modern WPF styling examples.

📦 Microsoft Store: https://apps.microsoft.com/detail/9PHND2W8WGG7?hl=en-us&gl=GB&ocid=pdpshare

The gallery demonstrates:

  • Modern Buttons, TextBoxes, ComboBoxes, DataGrids, Tabs, Menus, and more
  • Light & Dark themes
  • Smooth animations and transitions
  • Modernized WPF layouts and surfaces
  • Real-world desktop UI examples built entirely with native WPF controls

<p align="left"> <img src="https://github.com/user-attachments/assets/38db8b2a-01be-46f4-822f-81dadd4fe39d" width="250" />   <img src="https://github.com/user-attachments/assets/e26e98df-637a-431e-9214-f34eab7284f4" width="250" /> </p>

<p align="left"> <img src="https://github.com/user-attachments/assets/251e1736-ba79-456f-a0f2-ba0786745997" width="250" />   <img src="https://github.com/user-attachments/assets/ad9fbe2c-057b-4a23-bdce-592d795f88ee" width="250" /> </p>

<p align="left"> <img src="https://github.com/user-attachments/assets/1b26ba5f-7a98-48ad-83bd-8be195dbf2ec" width="250" />   <img src="https://github.com/user-attachments/assets/702e582d-61cd-4023-aa77-3805cfdff1eb" width="250" /> </p>

<p align="left"> <img src="https://github.com/user-attachments/assets/09a41a2e-3c93-413b-af42-ec94c8d90839" width="250" />   <img src="https://github.com/user-attachments/assets/69bf2fae-a6eb-4609-9f1c-bef64586f3be" width="250" /> </p>


✨ Features

  • Modern Windows 11-style rounded edges and fluent animations
  • Dark & Light themes included
  • Custom window chrome with smooth transitions
  • Drop-in integration with minimal XAML changes
  • Backward compatible: .NET 4.5.1 → .NET 9, Windows 7 → 11

🧱 Styled WPF Controls

These controls are styled using pure XAML and integrate seamlessly:

  • Button / ToggleButton
  • CheckBox / RadioButton
  • ComboBox / ListBox
  • Expander
  • ProgressBar
  • Slider
  • TextBlock / TextBox

🧪 Custom Controls

  • ModernWindow with custom chrome
  • Custom Calendar
  • Custom DatePicker
  • Loading Animation

🧩 Compatibility

  • .NET Framework: 4.5.1 and later (tested on 4.5.1, 4.6.2, 4.8)
  • .NET (Core/Modern): 6, 7, 8, 9 (Windows only)
  • OS: Windows 7 → Windows 11

🚀 Getting Started

  1. Install the NuGet package (coming soon):

    dotnet add package AtomicUI.WPF
    
  2. Merge the theme resource dictionary:

Option A — full pack URI

<ResourceDictionary>
  <ResourceDictionary.MergedDictionaries>
    <ResourceDictionary Source="pack://application:,,,/AtomicUI;component/Themes/DarkTheme.xaml" />
    <ResourceDictionary Source="pack://application:,,,/AtomicUI;component/Themes/Generic.xaml" />
  </ResourceDictionary.MergedDictionaries>
</ResourceDictionary>

Option B — shorter assembly resource path

<ResourceDictionary>
  <ResourceDictionary.MergedDictionaries>
    <ResourceDictionary Source="/AtomicUI;component/Themes/DarkTheme.xaml" />
    <ResourceDictionary Source="/AtomicUI;component/Themes/Generic.xaml" />
  </ResourceDictionary.MergedDictionaries>
</ResourceDictionary>

If one format does not resolve in your project setup, use the other. This can vary depending on how the WPF application loads resources, modules, or views.

  1. Replace your main window with ModernWindow:

    <ui:ModernWindow
        x:Class="MyApp.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:ui="clr-namespace:AtomicUI.CustomControls;assembly=AtomicUI"
        Title="My App">
    
    </ui:ModernWindow>
    
    public partial class MainWindow : ModernWindow
    {
        public MainWindow()
        {
            InitializeComponent();
        }
    }
    
  2. The license key setup instructions

     using AtomicUI;
    
     public partial class App : Application
     {
         //Only required for paid licenses
         protected override async void OnStartup(StartupEventArgs e)
         {
             ThemeManager.SetKey("MY-LICENSE-KEY");
             base.OnStartup(e);
         }
     }
    
    

That is all it takes, you are now running a modern 2026-looking application.

📬 Support

Need help with setup, licensing, or integration?

⚡ Advanced Scenarios (Still Super Easy)

  1. Keeping Theme Styling When Overriding Control Styles AtomicUI automatically styles all native WPF controls. But if you create your own custom style without a BasedOn, you replace the entire style — which means the theme can’t apply its visuals.

❌ What not to do This overrides the entire TextBox style, removing AtomicUI’s styling:


<TextBox Height="40" AcceptsReturn="True" Text="{Binding Notes}">
    <TextBox.Style>
        <Style TargetType="{x:Type TextBox}">
            <Setter Property="FontSize" Value="30" />
        </Style>
    </TextBox.Style>
</TextBox>

✅ Correct way (inherits AtomicUI’s styling) To keep the theme’s visuals, base your style on the default TextBox style:

<TextBox Height="40" AcceptsReturn="True" Text="{Binding Notes}">
    <TextBox.Style>
        <Style BasedOn="{StaticResource {x:Type TextBox}}" 
               TargetType="{x:Type TextBox}">
            <Setter Property="FontSize" Value="30" />
        </Style>
    </TextBox.Style>
</TextBox>

✔ Applies to all controls This rule applies to any control you restyle:

  • Button
  • TextBox
  • ComboBox
  • ListBox
  • Slider
  • CheckBox
  • Your own custom controls If you want to keep AtomicUI’s visuals, always use:
BasedOn="{StaticResource {x:Type ControlName}}"

(This is standard WPF — not an AtomicUI limitation) When you apply your own style to a control, WPF replaces the entire style unless you explicitly inherit from the existing one. This is normal WPF behavior, and it applies to every theme library, including AtomicUI.

2. Style Not Found in Some Framework-Loaded Views

In some advanced scenarios, especially when a view is loaded dynamically by Prism or another framework, WPF may try to resolve a BasedOn style before the relevant AtomicUI style dictionary has been loaded for that view.

You may also see similar behaviour with controls such as ComboBox during view unload, where bindings or style lookups briefly fail as the visual tree is being torn down.

If this happens, the same fix applies: merge the relevant AtomicUI style dictionary closer to the control or view that is having the issue.

This usually only matters when you override a control style like this:

<Style BasedOn="{StaticResource {x:Type Label}}"
       TargetType="Label">
    <Setter Property="FontSize" Value="18" />
</Style>

<UserControl.Resources>
    <ResourceDictionary>
        <ResourceDictionary.MergedDictionaries>
            <ResourceDictionary Source="/AtomicUI;component/Themes/Styles/ModernLabelStyle.xaml" />
            
            <ResourceDictionary Source="/AtomicUI;component/Themes/Styles/ModernComboBoxStyle.xaml" />
        </ResourceDictionary.MergedDictionaries>

        <Style BasedOn="{StaticResource {x:Type Label}}"
               TargetType="Label">
            <Setter Property="FontSize" Value="18" />
        </Style>
    </ResourceDictionary>
</UserControl.Resources>

/AtomicUI;component/Themes/Styles/ModernControlNameStyle.xaml

/AtomicUI;component/Themes/Styles/ModernButtonStyle.xaml
/AtomicUI;component/Themes/Styles/ModernTextBoxStyle.xaml
/AtomicUI;component/Themes/Styles/ModernComboBoxStyle.xaml
/AtomicUI;component/Themes/Styles/ModernLabelStyle.xaml

This is only needed in rare cases, typically when:

  • A Prism region dynamically loads a view
  • A module loads its own ResourceDictionaries separately
  • A dialog/window is created outside the main application visual tree
  • A custom control library has isolated resources
  • A BasedOn style is resolved before AtomicUI’s global dictionaries finish loading

Dark & Light themes are included. Accent color customization is planned.


🎨 Theming

  • Dark & Light themes included (Themes/Dark.xaml, Themes/Light.xaml)
  • Use DynamicResource for color switching
  • Accent color customization planned for a future release

📄 License

Commercial license required.
A trial license activates automatically Distributed as a compiled-only NuGet package (no source).
See Pricing.


🧠 FAQ

Q: Can I use it in a commercial app?
A: Yes, but a paid license is required.

Q: Is the source code included?
A: No, this is a compiled-only package.

Q: Can I try it before buying?
A: A free demo NuGet and sample app will be available.


📦 Roadmap

  • .NET 10 support
  • Accent color customization
  • Light theme improvements
  • Sample/demo app
  • Theming guide & documentation

Product Compatible and additional computed target framework versions.
.NET net6.0-windows7.0 is compatible.  net7.0-windows was computed.  net7.0-windows7.0 is compatible.  net8.0-windows was computed.  net8.0-windows7.0 is compatible.  net9.0-windows was computed.  net9.0-windows7.0 is compatible.  net10.0-windows was computed. 
.NET Framework net451 is compatible.  net452 was computed.  net46 was computed.  net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 is compatible.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.5.1

    • No dependencies.
  • .NETFramework 4.6.2

    • No dependencies.
  • .NETFramework 4.8

    • No dependencies.
  • net6.0-windows7.0

    • No dependencies.
  • net7.0-windows7.0

    • No dependencies.
  • net8.0-windows7.0

    • No dependencies.
  • net9.0-windows7.0

    • No dependencies.

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
1.1.7 94 5/20/2026
1.1.6 89 5/20/2026
1.1.5 95 4/25/2026
1.1.2 96 4/25/2026
1.1.1 95 4/25/2026
1.1.0 110 4/20/2026
1.0.3 134 2/19/2026
1.0.2 109 2/17/2026
1.0.1 106 2/13/2026
1.0.0 129 2/2/2026

Some internal output errors fixed.