Reputation: 42
I'm looking for a way to leave buttons in the windows tray. I've already tried searching for NotifyIcon with buttons, but there's no way, at least not with NotifyIcons. Here's an example of buttons:
Upvotes: 0
Views: 340
Reputation: 48
create a context menu or something like that. Then just do.
notifyIcon1.ContextMenu = contextMenu1;
then just create contextmenu then add your buttons and ui.
Upvotes: 1