wpf-notifyicon
wpf-notifyicon copied to clipboard
NotifyIcon (aka system tray icon or taskbar icon) for the WPF platform
With Windows 7 new events were introduced to the shell notify icon, as documented [here](https://docs.microsoft.com/en-us/windows/win32/api/shellapi/nf-shellapi-shell_notifyiconw). Short form: before mouse events were created, even when no mouse was used, now there...
When I get a copy of the source and build NotifyIconWpf.Sample.ShowCases the standard OS balloon tips don't show:  It doesn't matter whether I choose "Show as Info", "Show as...
Basically i'm trying to have it so that clicking the taskbaricon will hide the popup if it is visible and show it if not. I couldn't figure out a way...
Hello. Tell me please. Can I forcefully prevent the window to be closed (popup). I need an analogue of TopMost. It appears as there is another application that knocks the...
After setting the culture to a culture other than the default culture, I can see my my resources load properly however once the notifyicon is instantiated, my non-standard culture is...
This is the first step to implement keyboard interaction using the standard Win+B, Ctrl+F10, Enter, etc. shortcuts. Going further will require more work: - something similar to https://github.com/hardcodet/wpf-notifyicon/pull/32 so that...
Added support for dynamic, in-memory icons to be assigned at the xaml level. This allows better support for MVVM design. For a small wpf project I created, I wanted the...
I have a requirement to show the application window on any interaction with the tasktray icon. `LeftClickCommand` works great, but there is nothing for right-click. I tried handling `MouseRightButtonUp` but...
When i want to show the MainWindow in the Windowless solution, i can only press the "Hide Window" button. .
When using the C# API to create a new tray icon menu entry like so: ```c# var launchItem = new MenuItem() { Header = "Test", Icon = new Image() {...