Autohotkey, GUI 버튼 활성화/비활성화

 

GuiControl, Enable/Disable, Btn

 

간단설명)

 

일반적으로 GuiControl을 이용해 GUI의 다양한 부분들을 콘트롤 하는게 가능합니다. 그중 버튼을 활성화 하거나 비활성화 할때 Enable, Disable을 이용합니다. 그외의 사용법은 레퍼런스에 나와있습니다.

 

레퍼런스

 

GuiControl - Syntax & Usage | AutoHotkey

If the target control has an associated variable, specify the variable's name as the ControlID (this method takes precedence over the ones described next). For this reason, it is usually best to assign a variable to any control that will later be accessed

www.autohotkey.com

 

예)

 

Gui, Add, Button, x20 y10 w100 h25 gButton1 vBtn1, 비활성화
Gui, Add, Button, x130, y10 w100 h25 gButton2 vBtn2, <- 활성화시키기
Gui, Show
Return

gButton1:
{
    GuiControl, Disable, vBtn1
}
Return

gButton2:
{
    GuiControl, Enable, vBtn1
}
Return

; 처음 실행시 Disable을 시키려면 Gui, Add, Button, ..... gButton1 vBtn1 + Disabled, 비활성으로시작

+ Recent posts