autohotkey创建gui窗体,按钮

2025-10-29 20:12:56

1、;例子(总):

Gui, Add, Button, x82 y90 w110 h60 , MyButton                                     

Gui, Show, x127 y87 h379 w479, 窗口名

Return

ButtonMyButton:   

msgbox,我的按钮。

return

GuiClose:

ExitApp

autohotkey创建gui窗体,按钮

2、Gui, Add, Button, x82 y90 w110 h60 , MyButton    

;;MyButton是控件名,同时也控件上出现的文字

;;x横坐标,y纵坐标,w宽,h高

autohotkey创建gui窗体,按钮

3、Gui, Show, x127 y87 h379 w479, 窗口名

;;显示窗体

autohotkey创建gui窗体,按钮

4、ButtonMyButton:

msgbox,我的按钮。

return

;;为按钮执行的内容(效果为:按下按钮,弹出信息框,内容为我的按钮)

autohotkey创建gui窗体,按钮

5、GuiClose:

ExitApp

;;gui窗体关闭时,脚本退出(托盘消失)

autohotkey创建gui窗体,按钮

声明:本网站引用、摘录或转载内容仅供网站访问者交流或参考,不代表本站立场,如存在版权或非法内容,请联系站长删除,联系邮箱:site.kefu@qq.com。
猜你喜欢