SimpleTrayIcon.onecore
3.0.2
Requires NuGet 2.8.6 or higher.
dotnet add package SimpleTrayIcon.onecore --version 3.0.2
NuGet\Install-Package SimpleTrayIcon.onecore -Version 3.0.2
<PackageReference Include="SimpleTrayIcon.onecore" Version="3.0.2" />
paket add SimpleTrayIcon.onecore --version 3.0.2
#r "nuget: SimpleTrayIcon.onecore, 3.0.2"
// Install SimpleTrayIcon.onecore as a Cake Addin #addin nuget:?package=SimpleTrayIcon.onecore&version=3.0.2 // Install SimpleTrayIcon.onecore as a Cake Tool #tool nuget:?package=SimpleTrayIcon.onecore&version=3.0.2
SimpleTrayIcon
A fast, lightweight, object oriented wrapper for the Shell_NotifyIcon API with no framework dependencies.
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 | Versions 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. |
-
net6.0
- System.Drawing.Common (>= 6.0.0)
-
net8.0
- System.Drawing.Common (>= 8.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.