hi
A feature i would like is to minimize to taskbar tray and also when vc icon is clicked instead of appearning in the tray , i would like it to appear on the desktop.
void NotifyIconMouseClick(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Left)
{
if (this.Visible)
this.Hide();
else
this.Show();
}
}
thanks.