7ow.NativeToastNotifications
31.12.2025
dotnet add package 7ow.NativeToastNotifications --version 31.12.2025
NuGet\Install-Package 7ow.NativeToastNotifications -Version 31.12.2025
<PackageReference Include="7ow.NativeToastNotifications" Version="31.12.2025" />
<PackageVersion Include="7ow.NativeToastNotifications" Version="31.12.2025" />
<PackageReference Include="7ow.NativeToastNotifications" />
paket add 7ow.NativeToastNotifications --version 31.12.2025
#r "nuget: 7ow.NativeToastNotifications, 31.12.2025"
#:package 7ow.NativeToastNotifications@31.12.2025
#addin nuget:?package=7ow.NativeToastNotifications&version=31.12.2025
#tool nuget:?package=7ow.NativeToastNotifications&version=31.12.2025
DON'T USE IF YOU'RE USING NET 6.0 OR ABOVE
Use the official package from Microsoft instead!
Allows for .NET Framework (for example "net472") to interact with the Windows 10/11 Notifications API.
This is an abstraction and won't match up with the official documentation.
However, it should still be easy-to-use and intuitive!
Usage
Example using C# WinForms net472:
- Create a new NotificationManager object:
AUMID is your app's Unique ID (DO NOT REUSE IT ACROSS PROJECTS)
DisplayName is the name that appears above the content
(optional) IconPath is the file path to an image. Supports ".png" and ".ico" files.
NativeToastNotifications.NotificationManager notificationManager = new NativeToastNotifications.NotificationManager(
"JohnSoftware.9FSC5H0.ExampleAUMID", // unique ID - please, make it SUPER unique!!
"Your app's Name",
"Z:\\example.png" // optional
);
- Show the notification:
- Text ONLY:
private void button1_Click(object sender, EventArgs e)
{
notificationManager.Show("title", "description");
}
- Small Image + Text:
private void button1_Click(object sender, EventArgs e)
{
notificationManager.Show("title", "description", smallPicturePath: "Z:\\small-example.png");
}
- Big (Hero) Image + Text:
private void button1_Click(object sender, EventArgs e)
{
notificationManager.Show("title", "description", bigPicturePath: "Z:\\big-example.png");
}
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET Framework | net472 is compatible. net48 was computed. net481 was computed. |
-
.NETFramework 4.7.2
- No dependencies.
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 |
|---|---|---|
| 31.12.2025 | 100 | 12/31/2025 |