0

I was wondering whether I can add an alerts indicator in my menu strip in windows form. For example, like on Facebook, they have an alerts feature for notifications enter image description here

If I can do it in any way, I hope anyone can provide me with a guide on how should I put it in my menustrip, Thanks.

  • It is quite unlikely that a user expects a menustrip to show an alert. You are not constrained by what a browser can do, consider NotifyIcon.ShowBalloonTip() – Hans Passant Oct 09 '18 at 17:08
  • Yeah, Windows Forms apps generally use status bars and notify icons (possibly with "balloon tips". You might want to draw some alert somewhere on your Windows, but there's no control that will help you (that I know of). – Flydog57 Oct 09 '18 at 19:07

1 Answers1

0

One option would be to use the StatusBar control in Winforms rather than a menustrip.

StatusBar Control Overview (Windows Forms)

Add a badge to a WinForms control

Jimi
  • 29,621
  • 8
  • 43
  • 61