# AtomUI **Repository Path**: gitmy/atomui ## Basic Information - **Project Name**: AtomUI - **Description**: AtomUI 是基于 .NET 技术的 Ant Design 实现,致力于将 Ant Design 优秀高效的设计语言和体验带到 Avalonia/.NET 跨平台桌面软件研发领域。 - **Primary Language**: C# - **License**: LGPL-3.0 - **Default Branch**: release/5.0 - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 105 - **Created**: 2026-01-09 - **Last Updated**: 2026-01-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README
[![AntDesign](https://img.shields.io/badge/AntDesign%20-5.0-1677ff?style=flat-square&logo=antdesign)](https://ant-design.antgroup.com/components/overview) [![][github-contributors-shield]][github-contributors-link] [![][github-stars-shield]][github-stars-link] [![Nuget Download](https://img.shields.io/nuget/dt/AtomUI.Desktop.Controls?style=flat-square&logo=nuget&label=downloads)](https://www.nuget.org/packages/AtomUI.Desktop.Controls) [![][github-license-shield]][github-license-link] [Changelog](./CHANGELOG.md) · [Report Bug][github-issues-link] · [Request Feature][github-issues-link]
![](https://raw.githubusercontent.com/andreasbm/readme/master/assets/lines/rainbow.png) [github-release-shield]: https://img.shields.io/github/v/release/AtomUI/AtomUI?color=369eff&labelColor=black&logo=github&style=flat-square [github-release-link]: https://github.com/AtomUI/AtomUI/releases [github-releasedate-shield]: https://img.shields.io/github/release-date/AtomUI/AtomUI?color=black&labelColor=black&style=flat-square [github-releasedate-link]: https://github.com/AtomUI/AtomUI/releases [github-contributors-shield]: https://img.shields.io/github/contributors/AtomUI/AtomUI?color=c4f042&labelColor=black&style=flat-square [github-contributors-link]: https://github.com/AtomUI/AtomUI/graphs/contributors [github-forks-shield]: https://img.shields.io/github/forks/AtomUI/AtomUI?color=8ae8ff&labelColor=black&style=flat-square [github-forks-link]: https://github.com/AtomUI/AtomUI/network/members [github-stars-shield]: https://img.shields.io/github/stars/AtomUI/AtomUI?color=ffcb47&labelColor=black&style=flat-square [github-stars-link]: https://github.com/AtomUI/AtomUI/network/stargazers [github-issues-shield]: https://img.shields.io/github/issues/AtomUI/AtomUI?color=ff80eb&labelColor=black&style=flat-square [github-issues-link]: https://github.com/AtomUI/AtomUI/issues [github-license-shield]: https://img.shields.io/github/license/AtomUI/AtomUI?color=white&labelColor=black&style=flat-square [github-license-link]: https://github.com/AtomUI/AtomUI/blob/master/LICENSE Documentation Language: [English](README.md) | [简体中文](README.zh-CN.md) #### Gitee 2025 Open Source Project Selection Developing foundational software can be exceptionally tedious. Dear developer friends, if you have a Gitee account, we would greatly appreciate your valuable vote for AtomUI OSS. Our project is also free for commercial use, empowering small and medium-sized enterprises in their digital transformation. Your precious vote is our driving force forward. [Click to Vote](https://gitee.com/activity/2025opensource?ident=IAHHVA) #### Introduce AtomUI is an implementation of Ant Design based on .NET technology, dedicated to bringing the excellent and efficient design language and experience of Ant Design to the Avalonia/.NET cross-platform desktop software development field. Welcome to communicate and give suggestions to AtomUI, thank you for giving the project a Star. #### Features - Enterprise-class UI designed from Ant Design system for cross platform desktop applications. - A set of high-quality Avalonia Controls out of the box. - Use .NET development to achieve one-stop writing, seamless compilation on mainstream operating system platforms and render a consistent UI experience. - Based on Avalonia's powerful style system, Ant Design's theme customization capabilities are fully implemented. #### Community
Telegram WhatsApp Wechat Group QQ Group
#### Get Started ##### Add nuget package: AtomUI is recommended to be installed as a nuget package. We have uploaded AtomUI OSS-related packages to nuget.org. Currently, AtomUI has not released a long-term support version, so it is recommended to install the latest version we have released The packages we have released are as follows: | Package | Description | |-------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------| | AtomUI.Core | The basic functional package includes basic classes and a style system. | | AtomUI.Controls.Shared | Basic control package for both mobile phones and desktops | | AtomUI.Desktop.Controls | Main Controls package for desktops | | AtomUI.Desktop.Controls.DataGrid | Data grid control. Can be omitted if not used. | | AtomUI.Desktop.Controls.ColorPicker | ColorPicker control. Can be omitted if not used. | | AtomUI.Generator | Source generator definitions required for custom controls. Required if integrating with AtomUI theme system when creating custom controls. | | AtomUI.Icons.Generator | Required if you need to create custom icon packages. | | AtomUI.Fonts.AlibabaSans | Alibaba Sans font package | ```bash dotnet add package AtomUI --version 5.1.0 ``` ##### Enable AtomUI library ###### Project Configure ```xaml WinExe net9.0 enable true app.manifest true None All ``` ###### Program.cs Configure ```csharp using Avalonia; using System; namespace AtomUIProgressApp; class Program { [STAThread] public static void Main(string[] args) => BuildAvaloniaApp() .StartWithClassicDesktopLifetime(args); public static AppBuilder BuildAvaloniaApp() { return AppBuilder.Configure() .UseReactiveUI() .UsePlatformDetect() .With(new Win32PlatformOptions()) .LogToTrace(); } } ``` ###### Enable `AtomUI` in the `Application` Class ```csharp public partial class App : Application { public override void Initialize() { base.Initialize(); AvaloniaXamlLoader.Load(this); this.UseAtomUI(builder => { builder.WithDefaultLanguageVariant(LanguageVariant.zh_CN); builder.WithDefaultTheme(IThemeManager.DEFAULT_THEME_ID); builder.UseAlibabaSansFont(); // 配置字体 builder.UseDesktopControls(); builder.UseGalleryControls(); builder.UseDesktopDataGrid(); builder.UseDesktopColorPicker(); }); } } ``` ###### Enjoy using AtomUI to create unlimited possibilities You can start using it in your own projects ```xaml Sub Add ```
#### All Control Gallery You can launch the `./controlgallery/AtomUIGallery.Desktop/AtomUIGallery.Desktop.csproj` project in your local development environment to experience all AtomUI controls. ```bash git clone https://github.com/AtomUI/AtomUI.git dotnet restore dotnet run --project controlgallery/AtomUIGallery.Desktop/AtomUIGallery.Desktop.csproj -f net10.0 ```
#### Acknowledgements

Ant Design

Ant Design is an enterprise-level UI design language and React component library launched by Ant Group. It provides a set of high-quality, unified React components with rich preset themes and internationalization support, dedicated to improving the design and development efficiency of enterprise applications. Its elegant design and excellent development experience make it one of the most popular front-end solutions for middle and back-end projects.

Avalonia OSS

Avalonia is a cross-platform .NET UI framework that uses XAML language for interface design. It supports multiple platforms including Windows, macOS, Linux, iOS, and Android, providing a development experience similar to WPF. With its high-performance rendering engine and rich control library, Avalonia helps enterprises quickly build modern desktop and mobile applications.
#### License Description Projects using AtomUI OSS need to comply with the LGPL v3 agreement. Commercial applications (including but not limited to internal company projects, commercial projects developed by individuals using AtomUI OSS, and outsourced projects) are free when using binary links. If you want to customize AtomUI based on source code, you need to modify the open source code or purchase a commercial license. If you need a commercial license, please contact: Beijing Qinware Technology Co., Ltd. ### 🤝 Contributing Contributions of all types are more than welcome, if you are interested in contributing code, feel free to check out our GitHub [Issues][github-issues-link] to get stuck in to show us what you’re made of. [![][pr-welcome-shield]][pr-welcome-link] [![][github-contrib-shield]][github-contrib-link] [github-issues-link]: https://github.com/AtomUI/AtomUI/issues [pr-welcome-shield]: https://img.shields.io/badge/PR%20WELCOME-%E2%86%92-ffcb47?labelColor=black&style=for-the-badge [pr-welcome-link]: https://github.com/AtomUI/AtomUI/pulls [github-contrib-shield]: https://contrib.rocks/image?repo=chinware%2FAtomUI [github-contrib-link]: https://github.com/AtomUI/AtomUI/graphs/contributors