VellumUI 0.9.0
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 VellumUI --version 0.9.0
NuGet\Install-Package VellumUI -Version 0.9.0
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="VellumUI" Version="0.9.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="VellumUI" Version="0.9.0" />
<PackageReference Include="VellumUI" />
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 VellumUI --version 0.9.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: VellumUI, 0.9.0"
#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 VellumUI@0.9.0
#: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=VellumUI&version=0.9.0
#tool nuget:?package=VellumUI&version=0.9.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Vellum
Immediate-mode GUI library for C# with a small renderer API and built-in text rendering.
- Documentation: https://notgiven688.github.io/vellum/docs/
- Interactive demo: https://notgiven688.github.io/vellum/
- Repository: https://github.com/notgiven688/vellum
Vellum is backend-neutral. Application code builds UI with Ui; a host backend implements Vellum.Rendering.IRenderer and turns RenderList data into graphics API calls.
Basic usage:
using System.Numerics;
using Vellum;
using Vellum.Rendering;
IRenderer renderer = /* your backend */;
using var ui = new Ui(renderer)
{
Theme = ThemePresets.Dark()
};
var state = new AppState();
ui.Frame(width, height, mouse, input, state, static (root, state) =>
{
root.Panel(320f, state, static (panel, state) =>
{
panel.Heading("Hello");
if (panel.Button("Increment").Clicked)
state.Clicks++;
panel.Label($"Clicks: {state.Clicks}");
});
});
sealed class AppState
{
public int Clicks;
}
The docs cover widget identity, UiId, scope forms, text/font behavior, and backend implementation.
| 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 was computed. 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.
-
net8.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on VellumUI:
| Repository | Stars |
|---|---|
|
notgiven688/jitterphysics2
Fast, simple, and dependency-free physics engine written in C# with a clear and user-friendly API.
|
| Version | Downloads | Last Updated |
|---|---|---|
| 1.1.0 | 123 | 5/9/2026 |
| 1.0.1 | 98 | 5/8/2026 |
| 1.0.0 | 93 | 5/8/2026 |
| 0.9.7 | 98 | 5/8/2026 |
| 0.9.6 | 82 | 5/8/2026 |
| 0.9.5 | 92 | 5/7/2026 |
| 0.9.0 | 100 | 5/5/2026 |
| 0.8.0 | 99 | 5/5/2026 |
| 0.7.0 | 99 | 4/30/2026 |
| 0.6.0 | 92 | 4/29/2026 |
| 0.5.0 | 97 | 4/29/2026 |
| 0.4.0 | 101 | 4/29/2026 |
| 0.3.0 | 106 | 4/28/2026 |
| 0.2.0 | 90 | 4/28/2026 |
| 0.1.0 | 104 | 4/28/2026 |