为特定控件指定一个鼠标指针.
GUICtrlSetCursor ( 控件ID, 指针ID )
控件ID | 控件标识符(控件ID),可由 GUICtrlCreate... 函数的返回值获得. |
指针ID | 指针ID,必须是 Windows 的 API 函数 SetCursor 能用的ID(使用 -1 表示控件的默认指针) |
成功: | 返回值为1. |
失败: | 返回值为0. |
#include <GUIConstantsEx.au3>
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