private void menuQuitCrabo_Click(object sender, System.EventArgs e)
{
Application.Exit();
}
private void notifyIconCrabo_DoubleClick(object sender, System.EventArgs e)
{
if(this.Visible)
{
this.Hide();
this.ShowInTaskbar=false;
}
else
{
this.ShowInTaskbar=true;
this.Show();
this.WindowState=FormWindowstate.Normal;
this.Activate();
}
}
private void PollFormCrabo_SizeChanged(object sender, System.EventArgs e)
{
if (this.WindowState == FormWindowstate.Minimized)
{
this.Hide();
this.ShowInTaskbar=false;
}
}
#endregion