xargw 发表于 2010-10-29 10:57:22

复选框的问题(已解决)

本帖最后由 xargw 于 2010-10-31 11:41 编辑

#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form2 = GUICreate("窗体1", 413, 305, 334, 265)
$Checkbox1 = GUICtrlCreateCheckbox("Checkbox1", 56, 16, 97, 17)
$Button1 = GUICtrlCreateButton("Button1", 88, 80, 75, 25)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
        $nMsg = GUIGetMsg()
        Switch $nMsg
                Case $GUI_EVENT_CLOSE
                        Exit
                Case $Button1
                        If GUICtrlRead($Checkbox1) = $GUI_CHECKED Then
                                MsgBox(0,"提示","选中")
                        EndIf

        EndSwitch
WEnd
我错在哪里?

3mile 发表于 2010-10-29 11:15:19

Case $form2 ?

lpxx 发表于 2010-10-29 12:35:14

Case $form2
改成Case $Button1
你太粗心了。

xargw 发表于 2010-10-31 11:43:38

上面的问题,已解决,谢谢各位
我想问一下,如果我有两个复选框,在易语言中是用如果真表示,在au3中,那个条件表示是那个意思啊

jianganew 发表于 2010-11-4 19:22:30

学习了,谢谢
页: [1]
查看完整版本: 复选框的问题(已解决)