函数参考


_GUICtrlSlider_Destroy

删除控件

#Include <GuiSlider.au3>
_GUICtrlSlider_Destroy(ByRef $hWnd)

参数

$hWnd 控件句柄

返回值

成功: 返回 True, 句柄设置为 0
失败: 返回 False

注意/说明

 仅限用于 _GUICtrlSlider_Create 创建的滑块控件

相关

_GUICtrlSlider_Create

示例/演示


#include <GUIConstantsEx.au3>
#include <GuiSlider.au3>

$Debug_S = False ; 检查传递给函数的类名, 设置为True并输出到一个控件的句柄,用于检查它是否工作

_Main()

Func _Main()
    Local $hGUI, $hSlider

    ; 创建 GUI
    $hGUI = GUICreate("(UDF Created) Slider Destroy", 400, 296)
    $hSlider = _GUICtrlSlider_Create($hGUI, 2, 2, 396, 20, BitOR($TBS_TOOLTIPS, $TBS_AUTOTICKS))
    GUISetState()

    MsgBox(4160, "信息", "Destroy Slider")
    _GUICtrlSlider_Destroy($hSlider)

    ; 循环直到用户退出
    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE
    GUIDelete()
EndFunc   ;==>_Main