Курсовая работа: Разработка приложения клиента электронной почты
{
if (WindowState == FormWindowState .Minimized)
{
this .ShowInTaskbar = false ;
this .Hide();
mnuShow.Enabled = true ;
mnuHide.Enabled = false ;
timer1.Enabled = true ;
}
}
private void Form1_Activated(object sender, EventArgs e)
{
if (WindowState == FormWindowState .Normal)
{
this .ShowInTaskbar = true ;
//Показываем форму
this .Show();
timer1.Enabled = false ;
mnuShow.Enabled = false ;
mnuHide.Enabled = true ;
notifyIcon1.Icon = new Icon (dir + @"\messages\profile\Folder1.ico");
}
}
}
}
Program.cs
namespace Mail_client
{
namespace POPException