您的位置:首页 > 编程语言 > C#

C#编写NotifyIcon 将窗口最小化到托盘

2015-09-25 20:15 295 查看
1.设置窗体属性showinTask=false

2.加notifyicon控件notifyIcon1,为控件notifyIcon1的属性Icon添加一个icon图标。

private void Form1_SizeChanged(object sender, EventArgs e) 

 { 

  if (this.WindowState==FormWindowState.Minimized) 

  { 

   this.Hide(); 

   this.notifyIcon1.Visible=true; 

  }

 } 

4.添加点击图标事件(首先需要添加事件引用):

 private void notifyIcon1_Click(object sender, EventArgs e) 

 { 

  this.Visible = true;

  this.WindowState = FormWindowState.Normal;

  this.notifyIcon1.Visible = false; 

 }

 

5.可以给notifyIcon添加右键菜单:

主窗体中拖入一个ContextMenu控件contextMenu1,点中控件,在上下文菜单中添加菜单,notifyIcon1的ContextMenu行为中选中contextMenu1作为上下文菜单。

(可以在子菜单中添加行为)
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: