检索热跟踪项目时的鼠标指针 HCURSOR 值
#Include <GuiListView.au3>
_GUICtrlListView_GetHotCursor($hWnd)
$hWnd | 控件句柄 |
返回 HCURSOR 值,这是列表视图控件使用热跟踪时的光标句柄. |
#include <GUIConstantsEx.au3>
#include <GuiListView.au3>
$Debug_LV = False ; 检查传递给 ListView 函数的类名, 设置为True并输出到一个控件的句柄,用于检查它是否工作
_Main()
Func _Main()
Local $hListView
GUICreate("ListView Get Hot Cursor", 400, 300)
$hListView = GUICtrlCreateListView("", 2, 2, 394, 268)
GUISetState()
; 添加列
_GUICtrlListView_AddColumn($hListView, "Column 1", 100)
_GUICtrlListView_AddColumn($hListView, "Column 2", 100)
_GUICtrlListView_AddColumn($hListView, "Column 3", 100)
; Show hot cursor handle
MsgBox(4160, "信息", "Hot Cursor Handle: 0x" & Hex(_GUICtrlListView_GetHotCursor($hListView)) & @CRLF & _
"IsPtr = " & IsPtr(_GUICtrlListView_GetHotCursor($hListView)) & " IsHwnd = " & IsHWnd(_GUICtrlListView_GetHotCursor($hListView)))
; 循环直到用户退出
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
GUIDelete()
EndFunc ;==>_Main