PicaPico.NotifyIcon 1.0.0

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

// Install PicaPico.NotifyIcon as a Cake Tool
#tool nuget:?package=PicaPico.NotifyIcon&version=1.0.0

NotifyIcon NuGet Build AutoUpdate

NotifyIcon is an easy-to-use library for displaying NotifyIcon (notification icon) in both WPF and WinForms applications, offering non-intrusive system notifications and quick access functionality in the taskbar.

Usage


NotifyIcon is available as NuGet package.

using PicaPico;

string GetExePath()
{
    Process currentProcess = Process.GetCurrentProcess();
    return currentProcess.MainModule?.FileName ?? string.Empty;
}

var notifyIcon = new NotifyIcon()
{
    Text = "NotifyIcon",
    Icon = System.Drawing.Icon.ExtractAssociatedIcon(GetExePath())
};
var menuFirst = notifyIcon.AddMenu("MenuItem1");
menuFirst.Margin = new System.Windows.Forms.Padding(0, 2, 0, 0);
notifyIcon.AddMenu("MenuItem2", true);
notifyIcon.AddMenu("MenuItem3", onClick);
var menuLast = notifyIcon.AddMenu("Exit", (sender, e) => { Current.Shutdown(); });
menuLast.Margin = new System.Windows.Forms.Padding(0, 0, 0, 2);
notifyIcon.BalloonTipShown += OnBalloonTipShown;

void OnBalloonTipShown(object? sender, EventArgs e)
{
    MessageBox.Show("OnBalloonTipShown");
}
void onClick(object? sender, EventArgs e)
{
    notifyIcon.BalloonTipTitle = "Title";
    notifyIcon.BalloonTipText = "This Balloon Tips";
    notifyIcon.ShowBalloonTip(5);
}

Repository


The source code for NotifyIcon is hosted on GitHub. You can find it at the following URL: https://github.com/HeHang0/NotifyIcon

License


NotifyIcon is released under the MIT license. This means you are free to use and modify it, as long as you comply with the terms of the license.

Product Compatible and additional computed target framework versions.
.NET net6.0-windows7.0 is compatible.  net7.0-windows was computed.  net7.0-windows7.0 is compatible.  net8.0-windows was computed. 
.NET Framework net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 is compatible.  net48 is compatible.  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
1.0.0 174 7/22/2023

First release