Aprillz.MewUI.Skia.Interop.Direct2D
0.19.1
dotnet add package Aprillz.MewUI.Skia.Interop.Direct2D --version 0.19.1
NuGet\Install-Package Aprillz.MewUI.Skia.Interop.Direct2D -Version 0.19.1
<PackageReference Include="Aprillz.MewUI.Skia.Interop.Direct2D" Version="0.19.1" />
<PackageVersion Include="Aprillz.MewUI.Skia.Interop.Direct2D" Version="0.19.1" />
<PackageReference Include="Aprillz.MewUI.Skia.Interop.Direct2D" />
paket add Aprillz.MewUI.Skia.Interop.Direct2D --version 0.19.1
#r "nuget: Aprillz.MewUI.Skia.Interop.Direct2D, 0.19.1"
#:package Aprillz.MewUI.Skia.Interop.Direct2D@0.19.1
#addin nuget:?package=Aprillz.MewUI.Skia.Interop.Direct2D&version=0.19.1
#tool nuget:?package=Aprillz.MewUI.Skia.Interop.Direct2D&version=0.19.1
Aprillz.MewUI
A cross-platform, lightweight, code-first .NET GUI framework for building and shipping NativeAOT/Trim-friendly desktop apps without requiring a separate .NET runtime installation.
- 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
- Explicit AOT-friendly binding (no reflection-heavy path binding as the primary model)
- Thin core with optional extension packages for larger features
Project status
MewUI is actively developed, with published packages, cross-platform hosts, multiple rendering backends, and optional extension packages. The public API surface is still being stabilized, so breaking changes can happen between minor releases.
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
- Aprillz.MewUI.Backend.Direct2D (>= 0.19.1)
- Aprillz.MewUI.Skia (>= 0.19.1)
-
net8.0
- Aprillz.MewUI.Backend.Direct2D (>= 0.19.1)
- Aprillz.MewUI.Skia (>= 0.19.1)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Aprillz.MewUI.Skia.Interop.Direct2D:
| Package | Downloads |
|---|---|
|
Aprillz.MewUI.Skia.All
MewUI Skia all-in-one metapackage - includes Skia CPU fallback and all backend interop packages. |
|
|
Aprillz.MewUI.Skia.Windows
MewUI Skia metapackage for Windows - includes Skia CPU fallback plus Direct2D, GDI, and MewVG Win32 interop packages. |
GitHub repositories
This package is not used by any popular GitHub repositories.