H.NotifyIcon.WinUI 2.2.0

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

README

H.NotifyIcon

** This project is a continuation of the inactive base project to other platforms (WinUI/Uno.Skia.Wpf/Console) - ❤️ https://github.com/hardcodet/wpf-notifyicon ❤️ **

This is an implementation of a NotifyIcon (aka system tray icon or taskbar icon) for .Net 6 WPF/WinUI/Uno.Skia.WPF/Console platforms. It does not just rely on the Windows Forms NotifyIcon component, but is a purely independent control which leverages several features of the WPF/WinUI frameworks in order to display rich tooltips, popups, context menus, and balloon messages. It can be used directly in code or embedded in any XAML file.

Features
NuGet

NuGet NuGet NuGet NuGet

Install-Package H.NotifyIcon.Wpf
Install-Package H.NotifyIcon.WinUI
Install-Package H.NotifyIcon.Uno
Install-Package H.NotifyIcon.Uno.WinUI
# If you need other platforms, you can use this Core library - 
# it allows you to make NotifyIcon even in a console application.
Install-Package H.NotifyIcon
Usage
<Window
    xmlns:tb="clr-namespace:H.NotifyIcon;assembly=H.NotifyIcon.Wpf" // WPF
    xmlns:tb="using:H.NotifyIcon" // WinUI
    >
    <tb:TaskbarIcon
        ToolTipText="ToolTip"
        IconSource="/Images/TrayIcons/Logo.ico"
        ContextMenu="{StaticResource TrayMenu}"
        MenuActivation="LeftOrRightClick"
        TrayPopup="{StaticResource TrayStatusPopup}"
        PopupActivation="DoubleClick"
        TrayToolTip="{StaticResource TrayToolTip}"
        />
</Window>
Efficiency Mode image

Windows 11 introduces a new concept called Efficiency Mode.
Since, basically, this library is intended for applications to exist in the background with the ability to interact through TrayIcon, the library implements an API for this mode:

EfficiencyModeUtilities.SetEfficiencyMode(bool value)
WindowExtensions.Hide(this Window window, enableEfficiencyMode: true) // default value
WindowExtensions.Show(this Window window, disableEfficiencyMode: true) // default value
TaskbarIcon.ForceCreate(bool enablesEfficiencyMode = true) // default value
Generated icons

Example 1: image

<tb:TaskbarIcon>
    <tb:TaskbarIcon.IconSource>
        <tb:GeneratedIconSource
            Text="❤️"
            Foreground="Red"
            />
    </tb:TaskbarIcon.IconSource>
</tb:TaskbarIcon>

Example 2: image

<tb:TaskbarIcon
    IconSource="/Icons/Error.ico"
    >
    <tb:TaskbarIcon.IconSource>
        <tb:GeneratedIconSource
            Text="5"
            Foreground="Black"
            FontSize="36"
            FontWeight="Bold"
            />
    </tb:TaskbarIcon.IconSource>
</tb:TaskbarIcon>

Example 3: image

<tb:TaskbarIcon>
    <tb:TaskbarIcon.IconSource>
        <tb:GeneratedIconSource
            Text="❤️"
            Foreground="Red"
            FontFamily="Segoe UI Emoji"
            Background="AliceBlue"
            FontWeight="Bold"
            FontSize="38"
            />
    </tb:TaskbarIcon.IconSource>
</tb:TaskbarIcon>

Example 4: image

<tb:TaskbarIcon>
    <tb:TaskbarIcon.IconSource>
        <tb:GeneratedIconSource
            Text="❤️"
            BorderThickness="5"
            FontSize="46"
            >
            <tb:GeneratedIconSource.Foreground>
                <LinearGradientBrush StartPoint="0,0" EndPoint="128,128">
                    <GradientStop Color="White" />
                    <GradientStop Color="Red" />
                </LinearGradientBrush>
            </tb:GeneratedIconSource.Foreground>
            <tb:GeneratedIconSource.BorderBrush>
                <LinearGradientBrush StartPoint="0,0" EndPoint="128,128">
                    <GradientStop Color="White" />
                    <GradientStop Color="Red" />
                </LinearGradientBrush>
            </tb:GeneratedIconSource.BorderBrush>
        </tb:GeneratedIconSource>
    </tb:TaskbarIcon.IconSource>
</tb:TaskbarIcon>
Design-Time Access

It is recommended to pin the designer icon for easy viewing. To do this, go to Taskbar Settings → Other system tray icons and enable this icon:
image

WinUI Context menu

At the moment, three modes are implemented, each with its own pros and cons.

  1. Based on your MenuFlyout, a Win32 PopupMenu will be created that will call the commands attached to your MenuFlyoutItem. This is the default. image
  2. The menu will be created in your open window, in the corner of the screen.
  3. A second transparent window will be created and used to render the native menu.. At the moment it is in the preview stage. To do this you need to explicitly set ContextMenuMode="SecondWindow"
    image

Availability of various options(depends on the version of WindowsAppSDK you are using):

Option Packaged App Unpackaged App
Transparency 🟢 from 1.1.0-preview 🟢 from 1.1.0-preview
Borderless 🔷 🟢 from 1.1.0-preview
Animations 🟢, but with borders 🟢 from 1.1.0-preview
Submenus 🔷 🔷
Behavior that needs attention
  1. This implementation currently uses the Guid associated with each TrayIcon. The default is a hash function that creates a unique Guid based on the path to your file, because Windows associates the guid with the current path when TrayIcon is registered. The only way to keep the settings when changing the file path is to use Authenticode. Read more here: https://docs.microsoft.com/en-us/windows/win32/api/shellapi/ns-shellapi-notifyicondataa#troubleshooting

Sample Apps

Support

Priority place for bugs: https://github.com/HavenDV/H.NotifyIcon/issues\ Priority place for ideas and general questions: https://github.com/HavenDV/H.NotifyIcon/discussions\ I also have a Discord support channel:
https://discord.gg/g8u2t9dKgE

Product Compatible and additional computed target framework versions.
.NET net8.0-windows10.0.17763 is compatible.  net9.0-windows 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

This package is not used by any NuGet packages.

GitHub repositories (18)

Showing the top 18 popular GitHub repositories that depend on H.NotifyIcon.WinUI:

Repository Stars
marticliment/UniGetUI
UniGetUI: The Graphical Interface for your package managers. Could be terribly described as a package manager manager to manage your package managers
Richasy/Bili.Uwp
适用于新系统UI的哔哩
Scighost/Starward
Game Launcher for miHoYo - 米家游戏启动器
Jeric-X/SyncClipboard
跨平台剪贴板同步、历史记录管理工具 / Cross-platform cipboard syncing, history management tool
ProtonVPN/win-app
Official ProtonVPN Windows app
GoldenPotato137/PotatoVN
一款Visual Novel管理软件
ClementGre/ThreeFingerDragOnWindows
Enables macOS-style three-finger dragging functionality on Windows Precision touchpads.
jayfunc/BetterLyrics
An elegant and deeply customizable lyrics & player app, built with WinUI3/Win2D | 一款优雅且高度自定义的歌词/播放器应用,基于 WinUI3/Win2D 构建
cnbluefire/HotLyric
热词,为 HyPlayer 和 LyricEase 提供桌面歌词支持。https://www.microsoft.com/store/productId/9MXFFHVQVBV9
Richasy/FantasyCopilot
A new-age AI desktop tool
Richasy/Rodel.Agent
支持主流在线 AI 服务的应用
SaboZhang/EasyTidy
EasyTidy A simple file auto-classification tool makes it easy to create automatic workflows with files. / EasyTidy 一个简单的文件自动分类整理工具 轻松创建文件的自动工作流程
insomniachi/Totoro
A Windows 10/11 only application that is a go to for all things anime.
BestOwl/MyPhone
Connect your mobile devices (Android/iOS/WindowsPhone) to PC
kurotu/OVR-Lighthouse-Manager
Automated power management for SteamVR base station
scratchfoundation/scratch-link
Device interoperability layer for Windows and MacOS
Anthonyy232/Nagi
Rediscover your local music collection with Nagi, a music player focused on speed, simplicity, and privacy. Nagi is built with C# and WinUI 3 to offer a clean, native Fluent experience. It's beautiful, efficient, and respects your privacy.
FalconNL93/WslToolbox
WSL Toolbox allows you to manage your WSL Distributions through an easy to use interface.
Version Downloads Last Updated
2.3.2 1,039 10/23/2025
2.3.1 1,277 10/6/2025
2.3.0 17,375 3/1/2025
2.2.0 20,770 12/6/2024
2.1.4 3,580 10/22/2024
2.1.3 3,537 8/18/2024
2.1.2 342 8/15/2024
2.1.0 3,645 7/10/2024
2.0.131 10,236 5/1/2024
2.0.129 312 4/26/2024
2.0.128 275 4/25/2024
2.0.124 8,580 1/3/2024
2.0.123 2,577 12/2/2023
2.0.122 241 11/30/2023
2.0.118 6,615 9/20/2023
2.0.117 412 9/13/2023
2.0.116 488 9/7/2023
2.0.115 3,506 8/2/2023
2.0.114 394 8/1/2023
2.0.113 294 8/1/2023
2.0.112 366 7/26/2023
2.0.111 287 7/26/2023
2.0.110 399 7/26/2023
2.0.108 4,222 4/5/2023
2.0.106 366 4/5/2023
2.0.105 424 4/1/2023
2.0.104 428 3/28/2023
2.0.103 885 3/28/2023
2.0.99 1,124 3/13/2023
2.0.98 386 3/13/2023
2.0.97 432 3/13/2023
2.0.95 371 3/12/2023
2.0.94 455 3/9/2023
2.0.93 569 3/5/2023
2.0.86 848 2/3/2023
2.0.84 452 2/2/2023
2.0.77 1,142 1/12/2023
2.0.76 1,356 1/10/2023
2.0.75 544 1/5/2023
2.0.74 2,680 11/8/2022
2.0.73 856 10/13/2022
2.0.72 574 10/13/2022
2.0.68 618 10/4/2022
2.0.67 767 9/22/2022
2.0.66 583 9/16/2022
2.0.64 768 8/23/2022
2.0.63 662 8/17/2022
2.0.60 691 8/10/2022
2.0.59 720 8/1/2022
2.0.58 592 7/26/2022
2.0.57 629 7/21/2022
2.0.56 630 7/17/2022
2.0.55 625 7/15/2022
2.0.54 621 7/15/2022
2.0.53 1,603 6/24/2022
2.0.52 628 6/24/2022
2.0.51 615 6/23/2022
2.0.50 939 5/24/2022
2.0.49 625 5/24/2022
2.0.48 858 4/27/2022
2.0.46 675 4/24/2022
2.0.45 613 4/24/2022
2.0.44 660 4/22/2022
2.0.43 616 4/22/2022
2.0.41 630 4/22/2022
2.0.39 650 4/19/2022
2.0.38 612 4/19/2022
2.0.37 641 4/17/2022
2.0.36 625 4/17/2022
2.0.35 593 4/17/2022
2.0.34 664 4/17/2022
2.0.33 623 4/17/2022
2.0.31 623 4/16/2022
2.0.30 637 4/15/2022
2.0.29 625 4/10/2022
2.0.28 612 4/10/2022
2.0.27 627 4/10/2022
2.0.26 621 4/10/2022
2.0.25 646 4/8/2022
2.0.24 627 4/4/2022
2.0.23 645 4/3/2022
2.0.22 609 4/2/2022
2.0.21 599 4/2/2022
2.0.20 607 4/2/2022
2.0.19 612 4/2/2022
2.0.18 606 4/2/2022
2.0.17 677 4/1/2022
1.1.12 671 3/27/2022
1.1.11 622 3/26/2022
1.1.10 647 3/24/2022
1.1.9 659 2/25/2022
1.1.8 617 2/25/2022
1.1.7 610 2/25/2022
1.1.6 628 2/25/2022
1.1.5 706 2/25/2022
0.0.0-dev 179 8/15/2024