Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hardcodet/wpf-notifyicon
NotifyIcon (aka system tray icon or taskbar icon) for the WPF platform
https://github.com/hardcodet/wpf-notifyicon
csharp dotnet ui-components wpf xaml
Last synced: 29 days ago
JSON representation
NotifyIcon (aka system tray icon or taskbar icon) for the WPF platform
- Host: GitHub
- URL: https://github.com/hardcodet/wpf-notifyicon
- Owner: hardcodet
- License: mit
- Created: 2019-07-11T14:21:43.000Z (over 5 years ago)
- Default Branch: develop
- Last Pushed: 2024-10-07T15:54:21.000Z (about 1 month ago)
- Last Synced: 2024-10-07T16:07:33.650Z (about 1 month ago)
- Topics: csharp, dotnet, ui-components, wpf, xaml
- Language: C#
- Homepage:
- Size: 644 KB
- Stars: 832
- Watchers: 20
- Forks: 130
- Open Issues: 31
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-wpf - Hardcodet NotifyIcon for WPF - (FREE, OPEN SOURCE) This is an implementation of a NotifyIcon (aka system tray icon or taskbar icon) for the WPF platform. (UI Controls / Individual Controls)
README
# Hardcodet NotifyIcon for WPF
:rocket: **This is the new official repository of the Hardcodet WPF NotifyIcon** :rocket:
Current version: [![Nuget](https://img.shields.io/nuget/v/Hardcodet.NotifyIcon.Wpf.svg)](https://www.nuget.org/packages/Hardcodet.NotifyIcon.Wpf/)
## Description
This is an implementation of a NotifyIcon (aka system tray icon or taskbar icon) for the WPF platform. It does not just rely on the Windows Forms NotifyIcon component, but is a purely independent control which leverages several features of the WPF framework 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 at a glance
- Custom Popups (interactive controls) on mouse clicks.
- Customized ToolTips (Vista and above) with fallback mechanism for xp/2003.
- Rich event model including attached events to trigger animations in Popups, ToolTips, and balloon messages. I just love that.
- Full support for standard Windows balloons, including custom icons.
- Custom balloons that pop up in the tray area. Go wild with styles and animations 🙂
- Support for WPF context menus.
- You can define whether to show Popups on left-, right-, double-clicks etc. The same goes for context menus.
- Simple data binding for Popups, ToolTips and custom balloons through attached properties and derived data context.
- Command support for single / double clicks on the tray icon.### Tutorial and Support
A comprehensive tutorial that complements the attached sample application can be found on the Code Project:
http://www.codeproject.com/KB/WPF/wpf_notifyicon.aspx## XAML Declaration Sample
The sample below shows some of the properties of the control. For a more comprehensive sample, have a look at the sample application that comes with the download.
``` XML
```
## Contributors and Thanks
Hi, I'm Philipp! This little library was originally written by me, but is currently mostly maintained by [Jan Karger](https://github.com/punker76) and [Robin Krom](https://github.com/Lakritzator). Big, big kudos to the two of you, and everybody else who [contributed](https://github.com/hardcodet/wpf-notifyicon/graphs/contributors) to this library. You rock!
Make sure to check out Robin's great [Greenshot](https://getgreenshot.org/) tool (that I use on a daily basis), and Jan's [MahApps](https://github.com/MahApps) UI framework.