🚀 Installation
Install the NuGet package (coming soon):
dotnet add package AtomicUI.WPF
🎨 Add the Theme Resource Dictionary
Merge the theme into your App.xaml:
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="pack://application:,,,/AtomicUI.WPF;component/Themes/AtomicUI.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
🪟 Use ModernWindow
Replace your main window with the Fluent‑styled 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.Controls;assembly=AtomicUI"
Title="My App"
Width="800"
Height="600">
<!-- Your content -->
</ui:ModernWindow>
public partial class MainWindow : ModernWindow
{
public MainWindow()
{
InitializeComponent();
}
}
Advanced setup
For advanced configuration, visit the GitHub README:
View Advanced Setup Instructions
💡 Tips
- Use
DynamicResourcefor theme‑aware brushes. - Dark & Light themes included.
- Accent color customization is planned.