VisioForge.DotNet.Core.UI.MAUI 2026.3.8

There is a newer version of this package available.
See the version list below for details.
dotnet add package VisioForge.DotNet.Core.UI.MAUI --version 2026.3.8
                    
NuGet\Install-Package VisioForge.DotNet.Core.UI.MAUI -Version 2026.3.8
                    
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="VisioForge.DotNet.Core.UI.MAUI" Version="2026.3.8" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="VisioForge.DotNet.Core.UI.MAUI" Version="2026.3.8" />
                    
Directory.Packages.props
<PackageReference Include="VisioForge.DotNet.Core.UI.MAUI" />
                    
Project file
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 VisioForge.DotNet.Core.UI.MAUI --version 2026.3.8
                    
#r "nuget: VisioForge.DotNet.Core.UI.MAUI, 2026.3.8"
                    
#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 VisioForge.DotNet.Core.UI.MAUI@2026.3.8
                    
#: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=VisioForge.DotNet.Core.UI.MAUI&version=2026.3.8
                    
Install as a Cake Addin
#tool nuget:?package=VisioForge.DotNet.Core.UI.MAUI&version=2026.3.8
                    
Install as a Cake Tool

VisioForge SDKs MAUI package

VisioForge.Core.UI.MAUI package contains UI controls for .Net MAUI platform.

Initializing

In order to use the .NET MAUI VisioForge SDKs you need to call the extension method in your MauiProgram.cs file as follows:

using SkiaSharp.Views.Maui.Controls.Hosting;
using VisioForge.Core.UI.MAUI;

public static class MauiProgram
{
	public static MauiApp CreateMauiApp()
	{
		var builder = MauiApp.CreateBuilder();
		builder
			.UseMauiApp<App>()
			// Initialize the SkiaSharp package by adding the below line of code
			.UseSkiaSharp()
			// Initialize the VisioForge MAUI package by adding the below line of code
			.ConfigureMauiHandlers(handlers => handlers.AddVisioForgeHandlers())
			// After initializing the VisioForge MAUI package, optionally add additional fonts
			.ConfigureFonts(fonts =>
			{
				fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
				fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
			});

		// Continue initializing your .NET MAUI App here

		return builder.Build();
	}
}

XAML usage

In order to make use of the SDK within XAML you can use this namespace:

xmlns:vf="clr-namespace:VisioForge.Core.UI.MAUI;assembly=VisioForge.Core.UI.MAUI"

Further information

For more information please visit:

Samples

Sample applications are available on GitHub.

Product Compatible and additional computed target framework versions.
.NET net9.0-android35.0 is compatible.  net9.0-ios18.0 is compatible.  net9.0-maccatalyst18.0 is compatible.  net9.0-windows10.0.19041 is compatible.  net10.0-android was computed.  net10.0-android36.0 is compatible.  net10.0-ios was computed.  net10.0-ios26.0 is compatible.  net10.0-maccatalyst was computed.  net10.0-maccatalyst26.0 is compatible.  net10.0-windows was computed.  net10.0-windows10.0.19041 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
2026.4.11 96 4/11/2026
2026.4.9 96 4/9/2026
2026.4.7 91 4/7/2026
2026.3.27 102 3/27/2026
2026.3.19 100 3/19/2026
2026.3.18 88 3/18/2026
2026.3.17 95 3/17/2026
2026.3.12 113 3/13/2026
2026.3.8 96 3/9/2026
2026.3.7 98 3/9/2026
2026.3.6 89 3/6/2026
2026.3.5 92 3/5/2026
2026.3.1 104 3/2/2026
2026.2.25 106 2/26/2026
2026.2.24 101 2/25/2026
2026.2.23 99 2/23/2026
2026.2.22 103 2/22/2026
2026.2.21 105 2/21/2026
2026.2.20 96 2/21/2026
2026.2.19 112 2/18/2026
Loading failed

Bug fixes and performance improvements. Please check changelog.