Function Reference

首页  后退  前进

GUICtrlCreateButton

 

创建按钮(Button)控件.

 

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

参数

text

按钮控件显示的文本.

left

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

top

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

width

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

height

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

style

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

默认 ( -1) : 无.

强制样式 : $WS_TABSTOP

exStyle

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

默认值 ( -1) : WS_EX_WINDOWEDGE

返回值

成功:

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

失败:

返回 0.

备注

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

 

使用 $BS_ICON 或 $BS_BITMAP 样式即可让按钮显示图标或图片. 使用 GUICtrlSetImage() 指定图片文件.

 

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

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

 

默认大小为 $GUI_DOCKSIZE

相关

GUICoordMode (Option), GUICtrlUpdate..., GUIGetMsg

函数示例

#include <GUIConstantsEx.au3>
Example()
Func Example()
    ; Create a GUI with various controls.
    Local $hGUI = GUICreate("Example", 300, 200)
    ; Create a button control.
    Local $idNotepad = GUICtrlCreateButton("Run Notepad", 120, 170, 85, 25)
    Local $idClose = GUICtrlCreateButton("Close", 210, 170, 85, 25)
    ; Display the GUI.
    GUISetState(@SW_SHOW, $hGUI)
    Local $iPID = 0
    ; Loop until the user exits.
    While 1
        Switch GUIGetMsg()
            Case $GUI_EVENT_CLOSE, $idClose
                ExitLoop
            Case $idNotepad
                ; Run Notepad with the window maximized.
                $iPID = Run("notepad.exe", "", @SW_SHOWMAXIMIZED)
        EndSwitch
    WEnd
    ; Delete the previous GUI and all controls.
    GUIDelete($hGUI)
    ; Close the Notepad process using the PID returned by Run.
    If $iPID Then ProcessClose($iPID)
EndFunc   ;==>Example

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