Notify Icon for Windows Service
C#
2
Posts
2
Posters
0
Views
1
Watching
-
-
Hi How to get notify icon for a windows service in the system try? I tried adding a notify icon, but i doesn't seem to be working. My service is running but i dont get the icon in the system tray. Can anybody help find this? Thanks in advance. Muthu.
this worked for me:
protected override void OnStart(string[] args)
{
notifyIcon1.Visible = true;
}