I am working on a Windows application, and when I launch this application, several icons appear on the tray panel:

and when I click on these icons, they disappear.
Does anyone know why this is happening?
protected override void OnClosed(EventArgs e) { try { notifyIcon1.Visible = false; notifyIcon1.Icon.Dispose(); notifyIcon1.Dispose(); } catch(Exception ex) { } base.OnClosed(e); Environment.Exit(0); }
source share