以下是引用NTSteven在2007-4-13 8:52:08的发言:
private void notifyIcon1_MouseDoubleClick(object sender, MouseEventArgs e)
{
this.Visible = true;
this.TopMost = true;
this.WindowState = System.Windows.Forms.FormWindowState.Normal;
}
private void Frm_Email_Resize(object sender, EventArgs e)
{
if (this.WindowState == System.Windows.Forms.FormWindowState.Minimized)
this.Visible = false;
else
this.Visible = true;
我直接下载了个控件
没自己去编了啊