Aprillz.MewUI.Linux
0.13.1
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Aprillz.MewUI.Linux --version 0.13.1
NuGet\Install-Package Aprillz.MewUI.Linux -Version 0.13.1
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.Linux" Version="0.13.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Aprillz.MewUI.Linux" Version="0.13.1" />
<PackageReference Include="Aprillz.MewUI.Linux" />
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.Linux --version 0.13.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Aprillz.MewUI.Linux, 0.13.1"
#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.Linux@0.13.1
#: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.Linux&version=0.13.1
#tool nuget:?package=Aprillz.MewUI.Linux&version=0.13.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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);
There are no supported framework assets in this package.
Learn more about Target Frameworks and .NET Standard.
-
net10.0
- Aprillz.MewUI.Backend.MewVG.X11 (>= 0.13.1)
- Aprillz.MewUI.Core (>= 0.13.1)
- Aprillz.MewUI.Platform.X11 (>= 0.13.1)
-
net8.0
- Aprillz.MewUI.Backend.MewVG.X11 (>= 0.13.1)
- Aprillz.MewUI.Core (>= 0.13.1)
- Aprillz.MewUI.Platform.X11 (>= 0.13.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.