![]() |
VOOZH | about |
dotnet add package VisioForge.DotNet.Core.UI.MAUI --version 2026.6.8
NuGet\Install-Package VisioForge.DotNet.Core.UI.MAUI -Version 2026.6.8
<PackageReference Include="VisioForge.DotNet.Core.UI.MAUI" Version="2026.6.8" />
<PackageVersion Include="VisioForge.DotNet.Core.UI.MAUI" Version="2026.6.8" />Directory.Packages.props
<PackageReference Include="VisioForge.DotNet.Core.UI.MAUI" />Project file
paket add VisioForge.DotNet.Core.UI.MAUI --version 2026.6.8
#r "nuget: VisioForge.DotNet.Core.UI.MAUI, 2026.6.8"
#:package VisioForge.DotNet.Core.UI.MAUI@2026.6.8
#addin nuget:?package=VisioForge.DotNet.Core.UI.MAUI&version=2026.6.8Install as a Cake Addin
#tool nuget:?package=VisioForge.DotNet.Core.UI.MAUI&version=2026.6.8Install as a Cake Tool
VisioForge.Core.UI.MAUI package contains UI controls for .Net MAUI platform.
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();
}
}
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"
For more information please visit:
Sample applications are available on GitHub.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net9.0-android35.0 net9.0-android35.0 is compatible. net9.0-ios18.0 net9.0-ios18.0 is compatible. net9.0-maccatalyst18.0 net9.0-maccatalyst18.0 is compatible. net9.0-windows10.0.19041 net9.0-windows10.0.19041 is compatible. net10.0-android net10.0-android was computed. net10.0-android36.0 net10.0-android36.0 is compatible. net10.0-ios net10.0-ios was computed. net10.0-ios26.0 net10.0-ios26.0 is compatible. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-maccatalyst26.0 net10.0-maccatalyst26.0 is compatible. net10.0-windows net10.0-windows was computed. net10.0-windows10.0.19041 net10.0-windows10.0.19041 is compatible. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 2026.6.8 | 61 | 6/8/2026 |
| 2026.6.4 | 61 | 6/4/2026 |
| 2026.5.31 | 64 | 5/31/2026 |
| 2026.5.30 | 57 | 5/30/2026 |
| 2026.5.29 | 63 | 5/29/2026 |
| 2026.5.26 | 50 | 5/29/2026 |
| 2026.5.22 | 78 | 5/22/2026 |
| 2026.5.18 | 75 | 5/18/2026 |
| 2026.5.17 | 65 | 5/17/2026 |
| 2026.5.15 | 100 | 5/15/2026 |
| 2026.5.14 | 88 | 5/14/2026 |
| 2026.5.13 | 73 | 5/13/2026 |
| 2026.5.10 | 73 | 5/10/2026 |
| 2026.5.8 | 83 | 5/8/2026 |
| 2026.5.4 | 70 | 5/4/2026 |
| 2026.5.2 | 70 | 5/1/2026 |
| 2026.5.1 | 72 | 5/1/2026 |
| 2026.4.30 | 77 | 4/30/2026 |
| 2026.4.28 | 85 | 4/28/2026 |
| 2026.4.24 | 138 | 4/24/2026 |
Bug fixes and performance improvements. Please check changelog.