增加一个notifyicon1和contextMenu1,并设置notifyicon1的ContextMenu属性为contextMenu1
重载窗体关闭事件,就是在点右上角的X的时候,程序不回退出,而是缩到右下角托盘
protected override void OnClosing(CancelEventArgs e)
{
Hide();
this.ShowInTaskbar = false;
notifyIcon1.Visible = true;
e.Cancel = true;
}
主窗体启动时隐藏右下角托盘图标
private void Form1_Load(object sender, System.EventArgs e)
{
notifyIcon1.Visible = false;
}
给contextMenu1增加显示和关闭两项
private void menuItem1_Click(object sender, System.EventArgs e)
{
Show();
}
private void menuItem2_Click(object sender, System.EventArgs e)
{
Application.Exit();
}