📄 wm_timer.asm
字号:
;<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<,<
.if dwFlag==1
.if TimeFlag==0
invoke SendMessage,hWnd,WM_SETICON,ICON_SMALL,hIcon2
mov note.cbSize,sizeof NOTIFYICONDATA
push hWnd
pop note.hwnd
mov note.uID,IDI_MAIN
mov note.uFlags,NIF_ICON OR NIF_MESSAGE\
OR NIF_TIP
MOV note.uCallbackMessage,WM_SHELLNOTIFY
mov eax,hIcon2
mov note.hIcon,eax
invoke lstrcpy,addr note.szTip,addr AppName
INVOKE Shell_NotifyIcon,NIM_MODIFY,ADDR note
mov TimeFlag,1
.else
invoke SendMessage,hWnd,WM_SETICON,ICON_SMALL,hIcon
mov note.cbSize,sizeof NOTIFYICONDATA
push hWnd
pop note.hwnd
mov note.uID,IDI_MAIN
mov note.uFlags,NIF_ICON OR NIF_MESSAGE\
OR NIF_TIP
MOV note.uCallbackMessage,WM_SHELLNOTIFY
mov eax,hIcon
mov note.hIcon,eax
invoke lstrcpy,addr note.szTip,addr AppName
INVOKE Shell_NotifyIcon,NIM_MODIFY,ADDR note
mov TimeFlag,0
.endif
.endif
;>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -