Zitat von
Prym:
sauber für net sollte es vieleicht schon sein
Na ja, irgendwas solltest du auch zu deinem Problem beitragen. Finde ich jedenfalls
Zitat:
aber binn weiter offen für alles^^
Ich bin mal nicht so:
Code:
// Closing-Event der Form
void MainFormClosing(object sender, System.ComponentModel.CancelEventArgs e)
{
notifyIcon1.Visible = false;
}
// SizeChanged-Event der Form
void MainFormSizeChanged(object sender, System.EventArgs e)
{
if(this.WindowState == FormWindowState.Minimized) {
this.ShowInTaskbar = false;
notifyIcon1.Visible = true;
}
}
// ContextMenu für NotifyIcon
void MenuItem1Click(object sender, System.EventArgs e)
{
if(this.WindowState == FormWindowState.Minimized)
this.WindowState = FormWindowState.Normal;
this.Activate();
notifyIcon1.Visible = false;
this.ShowInTaskbar = true;
}
void MenuItem2Click(object sender, System.EventArgs e)
{
this.Close();
}