检索滑块的最高和最低位置
#Include <GuiSlider.au3>
_GUICtrlSlider_GetRange($hWnd)
$hWnd | 控件句柄 |
成功: | The 返回格式如下的数组 |
[0] - 滑块的最低位置 | |
[1] - 滑块的最高位置 |
#include <GUIConstantsEx.au3>
#include <GuiSlider.au3>
$Debug_S = False ; 检查传递给函数的类名, 设置为True并输出到一个控件的句柄,用于检查它是否工作
_Main()
Func _Main()
Local $aRange, $hSlider
; 创建 GUI
GUICreate("Slider Get Range", 400, 296)
$hSlider = GUICtrlCreateSlider(2, 2, 396, 20, BitOR($TBS_TOOLTIPS, $TBS_AUTOTICKS, $TBS_ENABLESELRANGE))
GUISetState()
; Get Range
$aRange = _GUICtrlSlider_GetRange($hSlider)
MsgBox(4160, "信息", StringFormat("Range: %d - %d", $aRange[0], $aRange[1]))
; Set Range
_GUICtrlSlider_SetRange($hSlider, 20, 50)
; Get Range
$aRange = _GUICtrlSlider_GetRange($hSlider)
MsgBox(4160, "信息", StringFormat("Range: %d - %d", $aRange[0], $aRange[1]))
; 循环直到用户退出
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
GUIDelete()
EndFunc ;==>_Main