Intente hacerlo asi... pero cuando minimiso sigue estando en la barra de inicio.. y cuando presiono sobre la X me cierra directamente la apliacion...
Código PHP:
namespace Banto_Messenger
{
public partial class messenger : Form
{
public messenger()
{
InitializeComponent();
}
private void messenger_Resize(object sender, System.EventArgs e)
{
if (FormWindowState.Minimized == WindowState)
{
Hide();
}
this.ShowInTaskbar = false;
}
private void notifyIcon1_DoubleClick(object sender,
System.EventArgs e)
{
Show();
WindowState = FormWindowState.Normal;
}
private void messenger_Closing(object sender, System.EventArgs e){
this.ShowInTaskbar = false;
}
}
}
Help