MyNet.UI 19.0.0

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

<div align="center">

MyNet.UI

<img src="MyNetUI.png" alt="MyNet.UI" width="96" height="96" />

UI-framework-agnostic presentation layer: view models, shell, dialogs, navigation, notifications, and toasts. You provide concrete UI (WPF, Avalonia, etc.).

</div>

<div align="center">

MIT License NuGet .NET

</div>


Features

Feature Description
Navigation View locators and navigation services
Dialogs Presenter abstraction and shell host patterns
Notifications Toast and notification managers for MVVM
Theming Contracts implemented by your UI host (WPF, Avalonia, etc.)

Installation

dotnet add package MyNet.UI

Quick start (DI)

using Microsoft.Extensions.DependencyInjection;
using MyNet.UI.Dialogs;
using MyNet.UI.Locators;
using MyNet.UI.Navigation;
using MyNet.UI.Notifications;
using MyNet.UI.Toasting;
using MyNet.UI.ViewModels;

var services = new ServiceCollection();
services.AddViewLocators();
services.AddDialogs(b => b.AddPresenter<MyDialogPresenter>());
services.AddNavigation();
services.AddNotifications();
services.AddToasting();
services.AddShell();
  • Dialogs: implement IDialogPresenter — see Dialogs guide
  • Notifications / toasts: bind UI to INotificationsManager.Notifications and IToastManager.Toasts
  • Shell: register ShellHostViewModel in your host
  • Theming: implement IThemeService + IThemeBaseRegistry in your host, then UseThemeManager() — see Theming guide

Documentation



<div align="center">

<sub>

Copyright © 2016-2026 - Stéphane ANDRE. All Rights Reserved.

<br/>

Released under the MIT License.

</sub>

</div>

Product Compatible and additional computed target framework versions.
.NET 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on MyNet.UI:

Package Downloads
MyNet.Wpf

This library is a comprehensive class library designed to simplify the implementation of common GUI functionalities in .NET applications.

MyNet.Avalonia.UI

Custom user interface components and controls for Avalonia applications, providing a rich set of features and functionality.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
19.2.1 0 5/31/2026
19.2.0 28 5/31/2026
19.1.0 30 5/31/2026
19.0.0 47 5/29/2026
18.0.0 116 4/16/2026
17.1.0 112 4/9/2026
17.0.1 109 3/18/2026
17.0.0 105 3/18/2026
16.0.2 124 2/19/2026
16.0.1 112 2/19/2026
16.0.0 109 2/19/2026
15.0.0 201 12/22/2025
14.4.0 184 12/21/2025
14.3.0 229 12/7/2025
14.2.0 204 11/26/2025
14.1.0 355 11/21/2025
14.0.4 249 11/14/2025
14.0.3 248 11/14/2025
14.0.2 265 11/14/2025
14.0.1 309 11/13/2025
Loading failed