在GUI上创建一个 Updown(上下按钮)控件.
GUICtrlCreateUpdown ( 输入控件ID [,样式] )
输入控件ID | 用于 Updown 控件的输入控件的控件ID. 式 [可选参数] 指定控件的样式.请查看附录中关于 GUI 控件样式附录 的说明. 默认值(-1):$UDS_ALIGNRIGHT. 强制性样式: $UDS_SETBUDDYINT 和 $UDS_ALIGNRIGHT,(默认将显示在输入控件右侧)除非另有定义对齐方式. |
成功: | 返回控件标识符(控件ID). |
失败: | 返回值为0. |
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
Example()
Func Example()
Local $title, $input, $msg
$title = "My GUI UpDown"
GUICreate($title, -1, -1, -1, -1, $WS_SIZEBOX)
$input = GUICtrlCreateInput("2", 10, 10, 50, 20)
GUICtrlCreateUpdown($input)
; Attempt to resize input control
GUICtrlSetPos($input, 10, 10, 100, 40)
GUISetState()
; Run the GUI until the dialog is closed
While 1
$msg = GUIGetMsg()
If $msg = $GUI_EVENT_CLOSE Then ExitLoop
WEnd
MsgBox(4096, "Updown", GUICtrlRead($input))
EndFunc ;==>Example