本帖最后由 xia_xia 于 2016-2-5 15:40 编辑
我是初学者,问的问题都很低级,请朋友不吝赐教,谢谢。
比如,我要点中一个复选框后,不要其他的按钮来传输命令,直接执行,这样如果做呢?
比如,我只想显示一个LABEL#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 476, 236)
$Checkbox1 = GUICtrlCreateCheckbox("选取此复选框,即时显示LABEL", 96, 32, 233, 33)
$Label1 = GUICtrlCreateLabel("Label1", 96, 104, 44, 23)
GUICtrlSetFont(-1, 10, 400, 0, "微软雅黑")
GUICtrlSetState(-1, $GUI_HIDE)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
|