Aprillz.MewUI 0.8.3

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

Aprillz.MewUI

A cross-platform and lightweight, code-first .NET GUI library 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

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
0.8.3 31 1/22/2026
0.8.2 36 1/20/2026
0.8.1 73 1/20/2026
0.7.3 83 1/18/2026
0.7.2 85 1/18/2026
0.7.1 88 1/15/2026
0.7.0 80 1/15/2026
0.6.2 88 1/14/2026
0.6.1 83 1/14/2026
0.6.0 88 1/13/2026
0.5.0 89 1/11/2026
0.4.0 90 1/10/2026
0.3.3 88 1/10/2026
0.3.2 87 1/10/2026
0.3.1 95 1/9/2026
0.3.0 87 1/9/2026
0.2.0 93 1/7/2026
0.1.0-preview.3 47 1/7/2026
0.1.0-preview.2 61 1/6/2026