刚学,蛮感兴趣的,请知道的回下
越详细越好
刚学,蛮感兴趣的,请知道的回下
越详细越好
首先托一个notifyIcon控件到窗口
private void Form1_Resize(object sender, System.EventArgs e)
{
if (this.WindowState == FormWindowState.Minimized) {
this.Visible = false;
this.notifyIcon1.Visible = true;
}
}
private void notifyIcon1_Click(object sender, System.EventArgs e)
{
this.Visible = true;
this.WindowState = FormWindowState.Normal;
this.notifyIcon1.Visible = false;
}