欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

基 礎(chǔ) 函 數(shù) 參 考


GUICtrlSetCursor

設(shè)置特定控件的鼠標(biāo)光標(biāo).

GUICtrlSetCursor ( 控件ID, 光標(biāo)ID )

參 數(shù)

控件ID GUICtrlCreate... 函數(shù)返回的控件標(biāo)識(shí)符.
光標(biāo)ID Windows SetCursor API 使用的光標(biāo) ID (設(shè)置為 -1, 使用默認(rèn)光標(biāo))

返 回 值

成功: 返回 1.
失敗: 返回 0.

備 注

GUISetCursor 改變整個(gè)窗口的鼠標(biāo)光標(biāo), 本函數(shù)設(shè)置鼠標(biāo)懸停控件時(shí)的光標(biāo).

若 光標(biāo)ID 無(wú)效, 則使用標(biāo)準(zhǔn)箭頭光標(biāo).

有效光標(biāo)ID參見(jiàn) 函數(shù)說(shuō)明.
光標(biāo)Id = 16 將隱藏鼠標(biāo)光標(biāo).

相 關(guān) 函 數(shù)

GUISetCursor

函 數(shù) 示 例


#include <GUIConstantsEx.au3>

Example()

Func Example()

    GUICreate("將光標(biāo)移到標(biāo)記控件", 300, 100)
    GUICtrlCreateLabel("標(biāo)記", 125, 40)
    GUICtrlSetCursor(-1, 4)
    GUISetState()

    While GUIGetMsg() <> $GUI_EVENT_CLOSE
    WEnd
EndFunc   ;==>Example

provider with jb51.net (unicode)