在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
1.设置窗体属性showinTask=false 2.加notifyicon控件notifyIcon1,为控件notifyIcon1的属性Icon添加一个icon图标。 3.添加窗体最小化事件(首先需要添加事件引用): // this.SizeChanged += new System.EventHandler(this.Form1_SizeChanged); //上面一行是主窗体InitializeComponent()方法中需要添加的引用 private void Form1_SizeChanged(object sender, EventArgs e) } private void notifyIcon1_Click(object sender, EventArgs e) this.WindowState = FormWindowState.Normal; this.notifyIcon1.Visible = false;
5.可以给notifyIcon添加右键菜单: 主窗体中拖入一个ContextMenu控件contextMenu1,点中控件,在上下文菜单中添加菜单,notifyIcon1的ContextMenu行为中选中contextMenu1作为上下文菜单。 (可以在子菜单中添加行为)
转自hzman的博客 原文地址:http://www.cnblogs.com/webman/archive/2007/06/22/792849.html 1.设置窗体属性showinTask=false 2.加notifyicon控件notifyIcon1,为控件notifyIcon1的属性Icon添加一个icon图标。 3.添加窗体最小化事件(首先需要添加事件引用): // this.SizeChanged += new System.EventHandler(this.Form1_SizeChanged); //上面一行是主窗体InitializeComponent()方法中需要添加的引用 private void Form1_SizeChanged(object sender, EventArgs e) } private void notifyIcon1_Click(object sender, EventArgs e) this.WindowState = FormWindowState.Normal; this.notifyIcon1.Visible = false;
5.可以给notifyIcon添加右键菜单: 主窗体中拖入一个ContextMenu控件contextMenu1,点中控件,在上下文菜单中添加菜单,notifyIcon1的ContextMenu行为中选中contextMenu1作为上下文菜单。 (可以在子菜单中添加行为) |
请发表评论