2

我有一个带有 AutoHotkey 的 GUI 窗口,但我不知道如何更改图片。我查看了 GuiControl 但文档确实缺乏(尤其是示例)。到目前为止我的代码:

Gui,Add,Picture,w300 h-1,first.png
Gui,Add,Button,x60 w80 h30, Start
Gui,Show
Return

GuiClose:
ExitApp
Return

ButtonStart:
;How can I change the picture?
return
4

1 回答 1

3

您需要为控件设置关联变量。

Gui,Add,Picture,w300 h-1 vMyPicture, first.png
Gui,Add,Button,x60 w80 h30, Start
Gui,Show
Return

GuiClose:
ExitApp
Return

ButtonStart:
    GuiControl,, MyPicture, second.png
return
于 2012-11-24T10:26:47.707 回答