GUICtrlSetCursor
--------------------------------------------------------------------------------
为特定控件指定一个鼠标指针.
GUICtrlSetCursor ( 控件ID, 指针ID )
参数
控件ID 控件标识符(控件ID),可由 GUICtrlCreate... 函数的返回值获得.
指针ID 指针ID,必须是 Windows 的 API函数 SetCursor 能用的ID(使用 -1 表示控件的默认指针)
返回值
成功: 返回值为1.
失败: 返回值为0.
注意/说明
和 GUISetCursor 不同的是,本函数是用来设置鼠标经过指定控件时的指针而不是整个窗口的指针.
若给定的 指针ID 无效则程序将使用标准的箭头指针代替.
详细的指针ID列表请查看 MouseGetCursor.
CursorId = 16 将隐藏鼠标光标.#include <GUIConstantsEx.au3>
Opt('MustDeclareVars', 1)
Example()
Func Example()
GUICreate("put cursor over label", 300, 100)
GUICtrlCreateLabel("label", 125, 40)
GUICtrlSetCursor(-1, 4)
GUISetState()
While GUIGetMsg() <> $GUI_EVENT_CLOSE
WEnd
EndFunc ;==>Example
|