代码搜索:Shell_NotifyIcon
找到约 358 项符合「Shell_NotifyIcon」的源代码
代码结果 358
www.eeworm.com/read/112691/15478979
cpp ntray.cpp
/*
Module : NTRAY.CPP
Purpose: implementation for a MFC class to encapsulate Shell_NotifyIcon
Created: PJN / NOTSHELL/1 / 14-05-1997
History: None
Copyright (c) 1997 by PJ Naughter.
All righ
www.eeworm.com/read/286501/8762657
ctl trayarea.ctl
VERSION 5.00
Begin VB.UserControl TrayArea
Appearance = 0 'Flat
BackColor = &H80000005&
CanGetFocus = 0 'False
ClientHeight = 3600
ClientLeft =
www.eeworm.com/read/374597/9394029
txt 第五章4.txt
BOOL CMainFrame::PreTranslateMessage(MSG* pMsg)
{
if (pMsg->message == WM_LBUTTONDBLCLK)
{
// 隐藏窗口
ShowWindow(SW_HIDE);
// 向托盘中添加图标
NOTIFYICONDATA tnid;
tnid.cbSize = sizeof
www.eeworm.com/read/112312/7812409
ctl trayarea.ctl
VERSION 5.00
Begin VB.UserControl TrayArea
Appearance = 0 'Flat
BackColor = &H80000005&
CanGetFocus = 0 'False
ClientHeight = 3600
ClientLeft =
www.eeworm.com/read/245058/12824872
bas tuopan.bas
Attribute VB_Name = "tuopan"
Public Const WM_SETHOTKEY = &H32 '响应您定义的热键
Public Const NIM_ADD = &H0 '在“系统托盘”中加一图标
Public Const NIM_MODIFY = &H1 '修改“系统托盘”中的图标
Public Const NIM_DELETE = &H2 '删除“系统托
www.eeworm.com/read/347981/11620700
bas systrayicon.bas
Attribute VB_Name = "Systrayicon"
Public Type NOTIFYICONDATA
cbSize As Long
hWnd As Long
uId As Long
uFlags As Long
ucallbackMessage As Long
hIcon As Long
szTip As
www.eeworm.com/read/258444/11862526
bas tuopan.bas
Attribute VB_Name = "tuopan"
Public Const WM_SETHOTKEY = &H32 '响应您定义的热键
Public Const NIM_ADD = &H0 '在“系统托盘”中加一图标
Public Const NIM_MODIFY = &H1 '修改“系统托盘”中的图标
Public Const NIM_DELETE = &H2 '删除“系统托
www.eeworm.com/read/124003/14602458
bas module1.bas
Attribute VB_Name = "Module1"
Public Const WM_MOUSEMOVE = &H200 '在图标上移动鼠标
Public Const WM_LBUTTONDOWN = &H201 '鼠标左键按下
Public Const WM_LBUTTONUP = &H202 '鼠标左键释放
Public Const WM_LBUTTONDBLCLK = &H20
www.eeworm.com/read/120083/14813154
bas modsystrayicon.bas
Attribute VB_Name = "modSysTrayIcon"
Option Explicit
'******************************************************
'系统托盘图标代码(开始)
'******************************************************
Public Typ
www.eeworm.com/read/392884/8320639
bas trayicon.bas
Attribute VB_Name = "TrayIcon"
Option Explicit
Const MAX_TOOLTIP As Integer = 64
Const NIF_ICON = &H2 '删除图标
Const NIF_MESSAGE = &H1
Const NIF_TIP = &H4
Const NIM_A