AtomUI

(★ 824)

An enhancement and extension library for Avalonia, bringing the Ant Design design language, modern controls, theming, native integrations, and cross-platform UI capabilities to .NET desktop apps.

File Explorer

Showing a partial file list — download the zip above to see everything.

  • .editorconfig
  • .gitattributes
  • .gitignore
  • AGENTS.md
  • AtomUI.Generator.props.DotSettings
  • AtomUI.sln.DotSettings
  • AtomUI.slnx
  • CHANGELOG.md
  • CHANGELOG.zh-CN.md
  • CODE_OF_CONDUCT.md
  • CODE_OF_CONDUCT.zh-CN.md
  • COPYRIGHT.md
  • Directory.Build.props
  • Directory.Build.targets
  • Directory.Packages.props
  • global.json
  • LICENSE
  • README.md
  • README.nuget.md
  • README.ORG.md
  • README.ORG.zh-CN.md
  • README.zh-CN.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Showing a partial file list.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

dotnet add package

View Details ▼

Add or update a .NET package reference in a project file.

dotnet add package {{package}}

Add a package to the project in the current directory:

dotnet add {{path/to/file.csproj}} package {{package}}

Add a package to a specific project:

dotnet add package {{package}} {{[-v|--version]}} {{1.0.0}}

Add a specific version of a package to the project:

🔍

dotnet run

View Details ▼

Run a .NET application without explicit compile or launch commands.

dotnet run

Run the project in the current directory:

dotnet run --project {{path/to/file.csproj}}

Run a specific project:

dotnet run -- {{arg1=foo arg2=bar ...}}

Run the project with specific arguments:

🔍

git clone

View Details ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

// repository documentation