首页 > 代码库 > C# NotifyIcon添加系统托盘
C# NotifyIcon添加系统托盘
要求:
1 程序启动时,无系统托盘
2 程序最小化时,显示托盘,且程序隐藏
3 双击系统托盘,显示主界面,托盘隐藏
4 系统托盘右键,点击显示和退出按钮,主程序显示和退出
代码;
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace SystemIcon { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { } private void Form1_Resize(object sender, EventArgs e) { if (this.WindowState == FormWindowState.Minimized) {//最小化时 显示系统托盘,主界面隐藏 notifyIcon1.Visible = true; this.Visible = false; } else { //隐藏系统托盘 notifyIcon1.Visible = false; } } private void notifyIcon1_DoubleClick(object sender, EventArgs e) { this.Visible = true; //显示主窗口 this.WindowState = FormWindowState.Normal; this.Activate();//获得焦点 notifyIcon1.Visible = false;//隐藏托盘 } private void 显示ToolStripMenuItem_Click(object sender, EventArgs e) { // 显示主程序 notifyIcon1_DoubleClick(sender, e); } private void 退出ToolStripMenuItem_Click(object sender, EventArgs e) { //退出 this.Close(); Application.Exit(); } } }
说明;
1 添加NotifyIcon 和 ContextMenuStrip
2 使用NotifyIcon的ContextMenuStrip属性关联ContextMenuStrip
C# NotifyIcon添加系统托盘
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。