博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#在托盘显示图标
阅读量:6837 次
发布时间:2019-06-26

本文共 1527 字,大约阅读时间需要 5 分钟。

C#在托盘显示图标
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 notifyIconShow
{
public partial class notifyIconShow : Form
{
public notifyIconShow()
{
InitializeComponent();
}
 
#region//设置鼠标放在托盘图标上面的文字
/// 
/// 方法名称:notifyIconShow_Load(窗体加载事件)
/// 方法作用:设置鼠标放在托盘图标上面的文字
/// 
/// 
/// 
private void notifyIconShow_Load(object sender, EventArgs e)
{
//设置鼠标放在托盘图标上面的文字
this.notifyIcon1.Text = "这是托盘图标";
}
#endregion
 
#region//创建对象及声明变量
//创建NotifyIcon对象
NotifyIcon notifyicon = new NotifyIcon();
//创建托盘图标对象
Icon ico = new Icon("Clock2.ico");
//创建托盘菜单对象
ContextMenu notifyContextMenu = new ContextMenu();
#endregion
 
#region//隐藏任务栏图标,显示托盘图标
/// 
/// 方法名称:notifyIconShow_SizeChanged(窗体大小改变后事件)
/// 方法作用:隐藏任务栏图标,显示托盘图标
/// 
/// 
/// 
private void notifyIconShow_SizeChanged(object sender, EventArgs e)
{
//判断是否选择的是最小化按钮
if (WindowState == FormWindowState.Minimized)
{
//托盘显示图标等于托盘图标对象
//注意notifyIcon1是控件的名字而不是对象的名字
notifyIcon1.Icon = ico;
//隐藏任务栏区图标
this.ShowInTaskbar = false;
//图标显示在托盘区
notifyicon.Visible = true;
}
}
#endregion
 
#region//还原窗体
/// 
/// 方法名称:notifyIcon1_Click(托盘图标单击)
/// 方法作用:还原窗体
/// 
/// 
/// 
private void notifyIcon1_Click(object sender, EventArgs e)
{
//判断是否已经最小化于托盘
if (WindowState == FormWindowState.Minimized)
{
//还原窗体显示
WindowState = FormWindowState.Normal;
//激活窗体并给予它焦点
this.Activate();
//任务栏区显示图标
this.ShowInTaskbar = true;
//托盘区图标隐藏
notifyicon.Visible = false;
}
}
#endregion
}
}

转载地址:http://iemkl.baihongyu.com/

你可能感兴趣的文章
Chromium Embedded Framework (CEF)_3.2171.2069_v20170606_x86.tar.xz
查看>>
jsp页面代码的加载顺序
查看>>
常用伪元素及content属性值的使用
查看>>
统计学习方法 李航---第1章 统计学习方法概论
查看>>
[笔记].活用Quartus II内置模板,快速输入HDL代码、TimeQuset约束及tcl语句等
查看>>
【笔记】程序员的思维修炼4
查看>>
Scanner 的练习 。。。。依然不懂用法。。。苦恼
查看>>
使用div模拟出frameset效果
查看>>
linux理论知识点(用于考试)
查看>>
Eclipse 导入 Android studio Exception Ljava/lang/UnsatisfiedLinkEror
查看>>
Android Studio 打包签名发布New Key Store
查看>>
01-查看系统整体性能情况:sar
查看>>
privot函数使用
查看>>
Beginning Silverlight 4 in C#-Silverlight控件
查看>>
用户及场景分析
查看>>
Tool.js
查看>>
Java线程池 ExecutorService
查看>>
Windows Phone 8: Evolution of the Runtime and Application Compatibility
查看>>
NOIP 跳石头
查看>>
那些有趣的博客
查看>>