mfc 托盘技术(taskbar status area)

本文介绍了如何在MFC程序中创建任务栏图标并添加托盘菜单。通过`InitNotifyIconData`函数设置图标和提示信息,并在用户交互时响应自定义消息`WM_SHELLNOTIFY`,实现右键菜单和左键点击的相应功能。在程序关闭时,使用`OnDestroy`函数删除图标,确保干净退出。此外,还展示了在最小化窗口时如何隐藏窗口。

 1.让自己所编软件的图标显示在 taskbar status area(任务栏)处

创建一个基于对话框的MFC程序HelloWorld,在CHelloWorldDlg类中新建一个成员函数void InitNotifyIconData(void)。其具体实现如下

void CsupernotepadDlg::InitNotifyIconData(void)
{
 /*NOTIFYCONDATA structure contains the information that the system
 needs to process taskbar status area message*/
 NOTIFYICONDATA nd;

 //the size of this structure,in bytes
 nd.cbSize = sizeof(NOTIFYICONDATA); 

 //a handle to the window that receives the notification message associated with an icon in the taskbar status area
 nd.hWnd = m_hWnd;

 //the application-defined identifier of the taskbar icon
 nd.uID = IDR_MAINFRAME; 

 //Flags that indicate which of the other members contain valid data
 nd.uFlags = NIF_ICON | NIF_TIP | NIF_MESSAGE;

 // is the identif
评论 1
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值