0

I would like to know if there is a way to set NotifyIcon to send notifications at a time which will be scheduled once the app is open. The functionality should be to send notifications like in an alarm. So the user gets the notification even when the application is closed.

Rasheen Ruwisha
  • 135
  • 3
  • 10

1 Answers1

0

No you can't. As the NotifyIcon is a control like others in your form and gets disposed when the form is closed.

However, you may Hide() (or Visibility = false) your form instead of Close();

Ashkan Mobayen Khiabani
  • 33,575
  • 33
  • 102
  • 171