QuickMarkup.UWP
0.1.4
See the version list below for details.
dotnet add package QuickMarkup.UWP --version 0.1.4
NuGet\Install-Package QuickMarkup.UWP -Version 0.1.4
<PackageReference Include="QuickMarkup.UWP" Version="0.1.4" />
<PackageVersion Include="QuickMarkup.UWP" Version="0.1.4" />
<PackageReference Include="QuickMarkup.UWP" />
paket add QuickMarkup.UWP --version 0.1.4
#r "nuget: QuickMarkup.UWP, 0.1.4"
#:package QuickMarkup.UWP@0.1.4
#addin nuget:?package=QuickMarkup.UWP&version=0.1.4
#tool nuget:?package=QuickMarkup.UWP&version=0.1.4
QuickMarkup (ALPHA)
This project is still in Alpha. Not recommended for production use yet.
QuickMarkup is a declarative markup language that makes it easier to declare UI in C# without using XAML. Our system relies on reactivity, rather than MVVM style. Some patterns are Vue-inspired.
Currently, our full support is UWP and WinUI 3 .NET 10. Supports most other UI frameworks in C# but with some functionality becoming limited (bind two way, bind to source, and children/child node auto detection do not have full support against native components)
Introduction
QuickMarkup is divided into 3 main sections: Usings, setup, and UI.
int Counter = 0;
<root>
<StackPanel>
<Button Text="Click Me" @Click+=`Counter++` />
<TextBlock
Text=`$"You clicked {Counter} time(s)"`
Visibility=`Counter > 0 ? Visibility.Visible : Visbility.Collapsed`
/>
</StackPanel>
</root>
Usings and setup part are optional. Root declares the place where your UI goes.
- Usings - declare all the imported namespace for variables and class you will use in
<setup>and<root> - Setup - the code that will be run before UI creation. The UI will have access to all those variables you declared in
<setup>tag - UI (
<root>) - the part where your markup goes.
Usage
Real usage will be put as an attribute on C# partial class
[QuickMarkup("""
int Counter = 0;
<root>
<StackPanel>
<Button Text="Click Me" @Click+=`Counter++` />
<TextBlock
Text=`$"You clicked {Counter} time(s)"`
Visibility=`Counter > 0 ? Visibility.Visible : Visbility.Collapsed`
/>
</StackPanel>
</root>
""")]
public partial class CounterPage : Page;
And that's it.
Documentation
Example Project
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0-windows10.0.26100 is compatible. |
-
net10.0-windows10.0.26100
- Microsoft.UI.Xaml (>= 2.8.7)
- QuickMarkup (>= 0.1.4)
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.1.17 | 52 | 7/11/2026 |
| 0.1.16 | 95 | 7/5/2026 |
| 0.1.15 | 103 | 6/13/2026 |
| 0.1.14 | 100 | 6/6/2026 |
| 0.1.13 | 101 | 6/6/2026 |
| 0.1.12-beta | 103 | 6/5/2026 |
| 0.1.11 | 99 | 6/2/2026 |
| 0.1.10 | 108 | 6/1/2026 |
| 0.1.9 | 105 | 6/1/2026 |
| 0.1.8 | 98 | 6/1/2026 |
| 0.1.7 | 98 | 5/30/2026 |
| 0.1.6 | 99 | 5/30/2026 |
| 0.1.5 | 96 | 5/30/2026 |
| 0.1.4 | 97 | 5/30/2026 |