Aprillz.MewUI.Core
0.16.0
dotnet add package Aprillz.MewUI.Core --version 0.16.0
NuGet\Install-Package Aprillz.MewUI.Core -Version 0.16.0
<PackageReference Include="Aprillz.MewUI.Core" Version="0.16.0" />
<PackageVersion Include="Aprillz.MewUI.Core" Version="0.16.0" />
<PackageReference Include="Aprillz.MewUI.Core" />
paket add Aprillz.MewUI.Core --version 0.16.0
#r "nuget: Aprillz.MewUI.Core, 0.16.0"
#:package Aprillz.MewUI.Core@0.16.0
#addin nuget:?package=Aprillz.MewUI.Core&version=0.16.0
#tool nuget:?package=Aprillz.MewUI.Core&version=0.16.0
Aprillz.MewUI
A cross-platform and lightweight, code-first .NET GUI framework aimed at NativeAOT.
- GitHub: https://github.com/aprillz/MewUI
- License: MIT
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
Aprillz.MewUI is a metapackage that includes Core, all platform hosts (Win32, X11, macOS), and all rendering backends (Direct2D, GDI, MewVG).
# Cross-platform (all-in-one)
dotnet add package Aprillz.MewUI
# Or platform-specific
dotnet add package Aprillz.MewUI.Windows
dotnet add package Aprillz.MewUI.Linux
dotnet add package Aprillz.MewUI.MacOS
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 | Versions 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. |
-
net10.0
- No dependencies.
-
net8.0
- No dependencies.
NuGet packages (15)
Showing the top 5 NuGet packages that depend on Aprillz.MewUI.Core:
| Package | Downloads |
|---|---|
|
Aprillz.MewUI
MewUI all-in-one metapackage — includes Core, all platforms, and all rendering backends. Use RuntimeIdentifier and MewUIBackend properties at publish to filter. |
|
|
Aprillz.MewUI.Backend.MewVG.Win32
MewVG (NanoVG) OpenGL backend for Aprillz.MewUI on Win32 |
|
|
Aprillz.MewUI.Backend.Gdi
GDI rendering backend for Aprillz.MewUI |
|
|
Aprillz.MewUI.Platform.Win32
Win32 platform host for Aprillz.MewUI |
|
|
Aprillz.MewUI.Backend.Direct2D
Direct2D rendering backend for Aprillz.MewUI |
GitHub repositories
This package is not used by any popular GitHub repositories.