36158130 发表于 2009-7-7 11:57:59

GUICtrlCreateRadio的选择

论坛里面这么搜索不到相关的信息
$Radio1        = GUICtrlCreateRadio("abc", 10, 10, 80, 20)
$Radio2        = GUICtrlCreateRadio("cba", 100, 10, 80, 20)
选择$Radio1执行一个动作
选择$Radio2的时候执行另一个动作
用 If 能做到么

36158130 发表于 2009-7-7 15:28:35

终于琢磨出来了

autoit3CN 发表于 2009-7-7 15:30:57

#include <GUIConstantsEx.au3>

Opt('MustDeclareVars', 1)

Example()

Func Example()
    Local $radio1, $radio2, $msg
    GUICreate("My GUI radio") ; will create a dialog box that when displayed is centered

    $radio1 = GUICtrlCreateRadio("Radio 1", 10, 10, 120, 20)
    $radio2 = GUICtrlCreateRadio("Radio 2", 10, 40, 120, 20)
    GUICtrlSetState($radio2, $GUI_CHECKED)

    GUISetState()      ; will display andialog box with 1 checkbox

    ; Run the GUI until the dialog is closed
    While 1
      $msg = GUIGetMsg()
      Select
            Case $msg = $GUI_EVENT_CLOSE
                ExitLoop
            Case $msg = $radio1 And BitAND(GUICtrlRead($radio1), $GUI_CHECKED) = $GUI_CHECKED
                MsgBox(64, 'Info:', 'You clicked the Radio 1 and it is Checked.')
            Case $msg = $radio2 And BitAND(GUICtrlRead($radio2), $GUI_CHECKED) = $GUI_CHECKED
                MsgBox(64, 'Info:', 'You clicked on Radio 2 and it is Checked.')
      EndSelect
    WEnd
EndFunc   ;==>Example帮助文件里的例子
有时候真的别怪人...

auhj887 发表于 2010-4-25 15:42:29

能不能就指定一个有效,而不用点击????
页: [1]
查看完整版本: GUICtrlCreateRadio的选择