How to display notifier for c# console application?
-
I want a notifier in the system tray for my c# console application. When I will start my console application it should should notify me and will stay in the system tray. That means in the task bar like antivirus, DAP etc). I can create it for windows application. But I need help to do it for console application...
-
I want a notifier in the system tray for my c# console application. When I will start my console application it should should notify me and will stay in the system tray. That means in the task bar like antivirus, DAP etc). I can create it for windows application. But I need help to do it for console application...
-
I want a notifier in the system tray for my c# console application. When I will start my console application it should should notify me and will stay in the system tray. That means in the task bar like antivirus, DAP etc). I can create it for windows application. But I need help to do it for console application...
it is exactly the same for console app as for WinForms app. you may have to include a few using statements (e.g. using System.Windows.Forms) which you get for free when you create a WinForms app. :)
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]
I only read code that is properly indented, and rendered in a non-proportional font; hint: use PRE tags in forum messages
-
Thanks a lotz.......
-
it is exactly the same for console app as for WinForms app. you may have to include a few using statements (e.g. using System.Windows.Forms) which you get for free when you create a WinForms app. :)
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]
I only read code that is properly indented, and rendered in a non-proportional font; hint: use PRE tags in forum messages
Actually I tried it without adding the references. Now this is working fine. thanks.
-
it is exactly the same for console app as for WinForms app. you may have to include a few using statements (e.g. using System.Windows.Forms) which you get for free when you create a WinForms app. :)
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]
I only read code that is properly indented, and rendered in a non-proportional font; hint: use PRE tags in forum messages
I am having another problem after showing the notifier in my console application. I have added context menu. But this is not showing any menu after right click in my notifier. How to solve this???