Feedback

C# - Form als Tray Icon ablegen (Notifyicon)

Veröffentlicht von am 5/17/2006
(7 Bewertungen)
Beim minimieren wird das aktuelle Fenster als Trayicon abgelegt und nicht mehr in der Taskleiste angezeigt. Beim Klick auf das Trayicon wird die Form wiederhergestellt.
// das notifyIcon1 kann am einfachsten per Designer erstellt werden

private void notifyIcon1_Click_1(object sender, System.EventArgs e)
{     
  this.ShowInTaskbar = true;
  this.notifyIcon1.Visible = false;
  this.WindowState = FormWindowState.Normal;
}

private void Form1_Resize(object sender, System.EventArgs e)
{
  if (this.WindowState == FormWindowState.Minimized)
  {
    this.notifyIcon1.ContextMenu = contextMenu1;
    this.ShowInTaskbar = false;
    this.WindowState = FormWindowState.Minimized;
    this.notifyIcon1.Visible = true;
  }
}   

Kommentare zum Snippet

 

Logge dich ein, um hier zu kommentieren!