我正在尝试将控件放在GUI中的选项卡中(AutoHotKey)但是没有出现
我创建了一个GUI,当我点击Add按钮时会出现第二个GUI, 在第二个GUI中,我创建了两个选项卡,我想在选项卡1中插入一个按钮,在选项卡2中插入另一个按钮 如果我的语法正确,它必须在两个选项卡中显示两个按钮。
#SingleInstance, force
; Layout
;--------
Gui, Font, s12
Gui, Add, Text, x70 y20, Available Shortcuts
Gui, Font, s11
Gui, Add, Button, x280 y60 w100 gAdd_Shortcut, Add
Gui, Add, Button, x280 y130 w100 gDelete_Shortcut, Delete
Gui, Add, Button, x280 y200 w100 gClose_App, Close
Gui, 1:Color, C8C8C8
Gui, 1:Show, w450 h300, `t
return
;Lables
;-------
; Next few lines of code is where i'm stuck and not working as it should!
;------------------------------------------------------------------------
Add_Shortcut:
Gui, 2:Color, C8C8C8
;Gui, 2: +Owner1
Gui, 2:Add, Tab3, x0 y0 w350 h200 Border,Add Key|Add Text|
Gui, Tab, 1
Gui, Add, Button, x20 y50 w100 h20
Gui, Tab, 2
Gui, Add, Button, x20 y20 w100 h20 vEdit1
Gui, 2:Show, w350 h200, Add Shortcuts
return
Delete_Shortcut:
return
Close_App:
ExitApp
return
GuiClose:
ExitApp
上面的代码是用AutoHotKey脚本编写的。