SimpleTrayIcon 3.0.2

Requires NuGet 2.8.6 or higher.

dotnet add package SimpleTrayIcon --version 3.0.2
NuGet\Install-Package SimpleTrayIcon -Version 3.0.2
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="SimpleTrayIcon" Version="3.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SimpleTrayIcon --version 3.0.2
#r "nuget: SimpleTrayIcon, 3.0.2"
#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.
// Install SimpleTrayIcon as a Cake Addin
#addin nuget:?package=SimpleTrayIcon&version=3.0.2

// Install SimpleTrayIcon as a Cake Tool
#tool nuget:?package=SimpleTrayIcon&version=3.0.2

SimpleTrayIcon

A fast, lightweight, object oriented wrapper for the Shell_NotifyIcon API with no framework dependencies.

NuGet version (SimpleTrayIcon)

Usage

var icon = new System.Drawing.Icon(typeof(Program), "SimpleTrayIcon.Demo.tray-icon.ico"); // Load an icon for the tray
using var menu = new TrayMenu(icon, "Tooltip", true);
var item = new TrayMenuItem { Content = "Item1" };
menu.Items.Add(item);
menu.Items.Add(new TrayMenuSeparator());
menu.Items.Add(new TrayMenuItem { Content = $"some content", IsChecked = true });
item.Click += (s, e) => ((TrayMenuItem)s).IsChecked = !((TrayMenuItem)s).IsChecked; // Attach an event
NativeMethods.RunLoop(); // Runs the message pump. Winforms, WPF, etc., will do this for you.

NativeAOT Linking Options

SimpleTrayIcon is fully AOT compatible.

You can build with static linking to a static library or dynamic library (with DLL).

To enable static linking to the SimpleTrayIcon DLL:

<PropertyGroup>
    <SimpleTrayIconStaticLinking>true</SimpleTrayIconStaticLinking>
</PropertyGroup>

To enable static linking to the SimpleTrayIcon static library:

<PropertyGroup>
    <SimpleTrayIconStaticLinking>true</SimpleTrayIconStaticLinking>
    <UseSimpleTrayIconStaticLib>true</UseSimpleTrayIconStaticLib>
</PropertyGroup>

OneCore

There is a OneCore SKU of the package SimpleTrayIcon.onecore which links to OneCoreUAP and VCRUNTIME140_APP. It is indeed not OneCoreUAP compatible, but is compatible with any full-trust UWP apps. This package does not support static linking.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  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. 
.NET Framework net472 is compatible.  net48 was computed.  net481 was computed. 
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
3.0.2 233 11/22/2023
2.1.8 264 10/15/2023
2.1.7 107 10/13/2023
2.1.5 108 10/8/2023
2.0.5 347 1/25/2023
2.0.3 254 1/23/2023
1.1.8 673 2/9/2022
1.0.13 382 2/9/2022