Aprillz.MewUI 0.11.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package Aprillz.MewUI --version 0.11.2
                    
NuGet\Install-Package Aprillz.MewUI -Version 0.11.2
                    
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="Aprillz.MewUI" Version="0.11.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Aprillz.MewUI" Version="0.11.2" />
                    
Directory.Packages.props
<PackageReference Include="Aprillz.MewUI" />
                    
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 Aprillz.MewUI --version 0.11.2
                    
#r "nuget: Aprillz.MewUI, 0.11.2"
                    
#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 Aprillz.MewUI@0.11.2
                    
#: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=Aprillz.MewUI&version=0.11.2
                    
Install as a Cake Addin
#tool nuget:?package=Aprillz.MewUI&version=0.11.2
                    
Install as a Cake Tool

Aprillz.MewUI

A cross-platform and lightweight, code-first .NET GUI framework aimed at NativeAOT.

Concept

  • Fluent C# markup (no XAML)
  • Designed for small footprint (AOT/Trim-friendly), fast startup, and low memory usage
  • Keep the binding model simple (no complex, reflection-heavy path binding)

Install

dotnet add package Aprillz.MewUI

Quick start

using Aprillz.MewUI;
using Aprillz.MewUI.Controls;

var window = new Window()
    .Title("Hello MewUI")
    .Size(520, 360)
    .Padding(12)
    .Content(
        new StackPanel()
            .Spacing(8)
            .Children(
                new Label().Text("Hello, Aprillz.MewUI").FontSize(18).Bold(),
                new Button().Content("Quit").OnClick(() => Application.Quit())
            )
    );

Application.Run(window);
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net10.0

    • No dependencies.
  • net8.0

    • No dependencies.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Aprillz.MewUI:

Package Downloads
Flags.Icons.MewUI

Aprillz.MewUI helpers that display flag icons from 4 bundled sources (Twemoji emoji, Circle, Square, Lipis). MewUI-specific implementation of Flags.Icons. SVGs are rasterized to PNG at runtime via Svg.Skia.

MewUIMvvmTemplate

MewUI MewUIMvvm Template with a counter

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Aprillz.MewUI:

Repository Stars
Scighost/Starward
Game Launcher for miHoYo - 米家游戏启动器
Version Downloads Last Updated
0.18.1 167 6/27/2026
0.18.0 116 6/27/2026
0.17.1 227 6/18/2026
0.17.0 138 6/18/2026
0.16.0 175 6/14/2026
0.15.2 917 4/14/2026
0.15.1 393 4/1/2026
0.15.0 408 3/29/2026 0.15.0 is deprecated because it has critical bugs.
0.14.0 231 3/25/2026
0.13.3 286 3/14/2026
0.13.2 255 3/14/2026
0.13.1 272 3/12/2026
0.13.0 239 3/9/2026
0.12.1 257 2/26/2026
0.11.2 169 2/22/2026
0.11.0 130 2/20/2026
0.10.6 142 2/16/2026
0.10.5 118 2/15/2026
Loading failed