代碼如下:
// this.SizeChanged += new System.EventHandler(this.Form1_SizeChanged);
//上面一行是主窗體InitializeComponent()方法中需要添加的引用
private void Form1_SizeChanged(object sender, EventArgs e)
{
if (this.WindowState==FormWindowState.Minimized)
{
this.Hide();
this.notifyIcon1.Visible=true;
}
}
.添加點擊圖標事件(首先需要添加事件引用):
private void notifyIcon1_Click(object sender, EventArgs e)
{
this.Visible = true;
this.WindowState = FormWindowState.Normal;
this.notifyIcon1.Visible = false;
}
.可以給notifyIcon添加右鍵菜單:
主窗體中拖入一個ContextMenu控件contextMenu1,點中控件,在上下文菜單中添加菜單,notifyIcon1的ContextMenu行為中選中contextMenu1作為上下文菜單。
(可以在子菜單中添加行為)