I'm using System.Windows.Forms.NotifyIcon in WPF app, I need to show Hyperlink in System.Windows.Forms.NotifyIcon, I tried to set the Hyperlink in BalloonTipText property, but NotifyIcon not recognize the Hyperlink:
NotifyIcon notifyIcon = new NotifyIcon();
notifyIcon.BalloonTipTitle = "BalloonTipTitle";
notifyIcon.BalloonTipText = "Click <a href='http://somewebsite.com'>here</a> to download.";
...
notifyIcon.Visible = true;
notifyIcon.ShowBalloonTip(3000);
In this question exist a solution with a TextBlock in WPF: Add hyperlink to textblock wpf, but NotifyIcon is a Windows Forms component with limited properties. Is it possible to show Hyperlink in System.Windows.Forms.NotifyIcon?
Update: Something just like this:

