Function Reference

首页  后退  前进

GUICtrlCreateRadio

 

创建单选框(Radio)控件.

 

GUICtrlCreateRadio ( "text", left, top [, width [, height [, style = -1 [, exStyle = -1]]]] )

参数

text

控件显示的文本.

left

控件左侧的位置. 若此值为 -1, 则根据 GUICoordMode() 的设置计算左侧位置.

top

控件上方的位置. 若此值为 -1, 则根据 GUICoordMode() 的设置计算顶部位置.

width

[可选] 控件的宽度 (默认文本自动调整适合宽度).

height

[可选] 控件的高度 (默认文本自动调整适合高度).

style

[可选] 控件的样式. 查看附录 GUI 控件样式表.

默认样式 ( -1) : 无.

强制样式 : $BS_AUTORADIOBUTTON 与 $WS_TABSTOP (若单选框是组的第一个单选框).

exStyle

[可选] 控件的扩展样式. 查看附录 扩展样式表.

返回值

成功:

返回控件标识符(控件ID).

失败:

返回 0.

备注

要获得控件的值, 查看 GUICtrlRead().

设置或者修改控件信息, 参考 GUICtrlUpdate...() 控件更新控件更新类函数.

 

要在默认样式上添加新样式, 可使用 BitOR($GUI_SS_DEFAULT_RADIO, 新样式,...) 语句.

使用上面列出的值必须将 #include <ButtonConstants.au3> 语句写入脚本中.

 

默认大小 $GUI_DOCKHEIGHT.

相关

GUICoordMode (Option), GUICtrlUpdate..., GUIGetMsg

函数示例

#include <GUIConstantsEx.au3>
#include <MsgBoxConstants.au3>
Example()
Func Example()
    GUICreate("My GUI radio") ; will create a dialog box that when displayed is centered
    Local $idRadio1 = GUICtrlCreateRadio("Radio 1", 10, 10, 120, 20)
    Local $idRadio2 = GUICtrlCreateRadio("Radio 2", 10, 40, 120, 20)
    GUICtrlSetState($idRadio2, $GUI_CHECKED)
    GUISetState(@SW_SHOW) ; will display an  dialog box with 1 checkbox
    Local $idMsg
    ; Loop until the user exits.
    While 1
        $idMsg = GUIGetMsg()
        Select
            Case $idMsg = $GUI_EVENT_CLOSE
                ExitLoop
            Case $idMsg = $idRadio1 And BitAND(GUICtrlRead($idRadio1), $GUI_CHECKED) = $GUI_CHECKED
                MsgBox($MB_SYSTEMMODAL, 'Info:', 'You clicked the Radio 1 and it is Checked.')
            Case $idMsg = $idRadio2 And BitAND(GUICtrlRead($idRadio2), $GUI_CHECKED) = $GUI_CHECKED
                MsgBox($MB_SYSTEMMODAL, 'Info:', 'You clicked on Radio 2 and it is Checked.')
        EndSelect
    WEnd
EndFunc   ;==>Example

----------------------------------------