ChickChuck2
ChickChuck2

Reputation: 42

NotifyIcon With Buttons

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:

Tray

Upvotes: 0

Views: 340

Answers (1)

ThatFriendlyAsianDev
ThatFriendlyAsianDev

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

Related Questions