This function adds a notification (asynchronously) to the notification tray.
LRESULT SHNotificationAdd( SHNOTIFICATIONDATA * pndAdd);ERROR_SUCCESS indicates success.
This API is called to add a notification to the tray. Notification processing is done asynchronously; that is, this function will return after adding the notification to the tray, and processing will happen on a different thread.(异步方式,添加到通知托盘与显示通知效果是由不同线程处理的)
To customize the physical behaviour for a notification, create a CLSID for the notification class (passed into SHNotificationAdd), and create the registry key:
[HKEY_CURRENT_USER/ControlPanel/Notifications/{CLSID}]@="Name" ; this is what appears in Settings - if you don't want to allow user customization, don't add this default value"Options"=dword:1 ; notification flags"Duration"=dword:0 ; duration in minutes of LED flashing"Wave"="wavefile" ; default is in the Windows folder. There is no extension on the fileThe following table lists the possible values for the Options parameter.
Notification flagValueDescriptionNOTIF_SOUND0x00000001Sound notification.NOTIF_VIBRATE0x00000002Vibrate notification.NOTIF_FLASH0x00000004ROM notification.NOTIF_MESSAGE0x00000008Message notification. 引申的应用:更改低电提示的效果。 注册表找到 [HKEY_CURRENT_USER/ControlPanel/Notifications/{A877D663-239C-47a7-9304-0D347F580408}]项, 将 Default值改成任何名字(只要不为空,空的话在设置里不出现此项),比如“LowBattery”。然后便可以在“设置”--“声音和提醒”--“通知”--“事件”里找到LowBattery项,可以对此类型的通知做更改。比如:播放声音,在屏幕上显示信息(即弹出通知),震动,指示灯闪烁等。注册表里的键与控制面板里的选项是对应的。引申的应用2:弹出一个与低电处理效果类似的通知。 LRESULT SHNotificationAdd( SHNOTIFICATIONDATA * pndAdd);将SHNOTIFICATIONDATA 结构中的clsid项设置成{A877D663-239C-47a7-9304-0D347F580408}对应的GUID值,然后SHNotificationAdd即可。#define Noti_GUID L"{A877D663-239C-47a7-9304-0D347F580408}" GUID myGUID;// Parse the GUIDhr = CLSIDFromString(Noti_GUID, &myGUID);SHNOTIFICATIONDATA sn = {0};sn.cbStruct = sizeof(sn);sn.dwId = SAMPLE_ID_I;sn.clsid = myGUID;sn.npPriority = SHNP_INFORM;sn.csDuration = 5;sn.pszTitle = TEXT("Title");sn.pszHTML = TEXT("Test Notification")sn.grfFlags = SHNF_FORCEMESSAGE;SHNotificationAdd(&sn));其他事件声音和提醒:[HKEY_CURRENT_USER/ControlPanel/Notifications/{F55615D6-D29E-4db8-8C75-98125D1A7253}]"Wave"="Notify""Duration"=dword:00000000"Options"=dword:00000009Default="无线数据交换: 自动接收"[HKEY_CURRENT_USER/ControlPanel/Notifications/{A877D65D-239C-47a7-9304-0D347F580408}]"Wave"="online""Duration"=dword:00000003"Options"=dword:0000000d[HKEY_CURRENT_USER/ControlPanel/Notifications/{A877D659-239C-47a7-9304-0D347F580408}]"Wave"="Infend""Duration"=dword:00000000"Options"=dword:00000001"AvailableOptions"=dword:00000003Default="ActiveSync: 结束同步"[HKEY_CURRENT_USER/ControlPanel/Notifications/{A877D658-239C-47a7-9304-0D347F580408}]"Wave"="infbeg""Duration"=dword:00000000"Options"=dword:00000000"AvailableOptions"=dword:00000003Default="ActiveSync: 开始同步"[HKEY_CURRENT_USER/ControlPanel/Notifications/Reminders]"Wave"="Alarm1""Duration"=dword:0000000a"Options"=dword:4000000dDefault="提醒"[HKEY_CURRENT_USER/ControlPanel/Notifications/{8ddf46e8-56ed-4750-9e58-afc6ce486d03}]"Wave"="infend""Duration"=dword:00000000"Options"=dword:00000000[=1有声音=0无声音]"AvailableOptions"=dword:00000003Default="连接断开"[HKEY_CURRENT_USER/ControlPanel/Notifications/{8ddf46e7-56ed-4750-9e58-afc6ce486d03}]"Wave"="infbeg""Duration"=dword:00000000"Options"=dword:00000008"AvailableOptions"=dword:0000000bDefault="连接成功"[HKEY_CURRENT_USER/ControlPanel/Notifications/{0D3132C4-1298-469c-B2B8-F28CE2D649D0}]"Wave"="infbeg""Duration"=dword:00000000"Options"=dword:00000009[HKEY_CURRENT_USER/ControlPanel/Notifications/{A877D663-239C-47a7-9304-0D347F580408}]"Wave"="lowbatt""Duration"=dword:00000000"Options"=dword:00000009[HKEY_CURRENT_USER/ControlPanel/Notifications/Default]"LedRefCount"=dword:00000000"Wave"="default""Duration"=dword:00000005"Options"=dword:0000000d[HKEY_CURRENT_USER/ControlPanel/Notifications/Sounds]"Repeat"=dword:00000000[HKEY_CURRENT_USER/ControlPanel/Notifications/{A877D65A-239C-47a7-9304-0D347F580408}]"Wave"="notify""Duration"=dword:00000000"Options"=dword:00000009Default="收件箱: 新电子邮件"[HKEY_CURRENT_USER/ControlPanel/Notifications/{A877D65F-239C-47a7-9304-0D347F580408}]"Wave"="type""Duration"=dword:00000000"Options"=dword:00000009Default="MSN Messenger: 新消息"[HKEY_CURRENT_USER/ControlPanel/Notifications/{A877D65E-239C-47a7-9304-0D347F580408}]"Wave"="online""Duration"=dword:00000000"Options"=dword:00000001Default="MSN Messenger: 联系人联机"