smooth 发表于 2014-2-4 15:09:18

[已解决]当鼠标移动到GUICtrlCreateButton时能否变成手型?

本帖最后由 smooth 于 2014-2-6 11:26 编辑

当鼠标移动到GUICtrlCreateButton时能否变成手型?论坛和帮助我都搜索过了,暂时没有找到,知道的麻烦指点一下,谢谢!

zch11230 发表于 2014-2-4 21:12:57

#include <GUIConstantsEx.au3>

Example()

Func Example()

        GUICreate("put cursor over label", 300, 100)
        GUICtrlCreateButton("", 125, 40,100,50)
        GUICtrlSetCursor(-1, 0)
        GUISetState()

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

smooth 发表于 2014-2-6 11:25:43

回复 2# zch11230

确实可以,非常感谢!
页: [1]
查看完整版本: [已解决]当鼠标移动到GUICtrlCreateButton时能否变成手型?