wpf-notifyicon
wpf-notifyicon copied to clipboard
NotifyIcon (aka system tray icon or taskbar icon) for the WPF platform
Context: https://github.com/hardcodet/wpf-notifyicon/issues/79 Didn't see any contribution instructions, so I just changed it in develop. Is this ok?
i'd like to bind to multiple mouse gestures. But seem like it is not supported. I'm trying to achieve an Alt+DoubleClick command and a different DoubleClickCommand
ContextMenu contextMenuStrip = new ContextMenu(); ToolStripMenuItem menuItem1 = new("menu 1", Resources.Led.ToBitmap()); ToolStripMenuItem menuItem2 = new ("menu2", Resources.Led.ToBitmap()); contextMenuStrip.Items.Add(menuItem1); contextMenuStrip.Items.Add(menuItem2); notifyIcon.ContextMenu= contextMenuStrip; How do I add a right-click pop-up menu to...
Typo fix, this took me an embarrassingly long time to work out why I was getting an error, so hopefully this will help someone else Happy if you want to...
I'm on 1.1.0 and my tray icon looks fine. After upgrading to 2.0.1 it shows the 4bit color icon. My icon is an `.ico` file which has 32bit, 8bit and...
Does it support toast notification to be displayed until the user closes it?
Hi, I have an empty tool-tip shows next to my TrayToolTip when it shows, seems to be the native system tool-tip (maybe!) that associate itself with every tray icon. Is...
It looks like the implementation in #93 was not fully correct. I'm seeing the following problems related to calling `TaskbarIcon.Dispose()` explicitly during application shutdown: 1. Explicit dispose may deadlock itself...