函数参考


_GUICtrlComboBox_DeleteString

删除一个字符串

#include <GuiComboBox.au3>
_GUICtrlComboBox_DeleteString($hWnd, $iIndex)

参数

$hWnd 控件的控件ID/句柄
$iIndex 基于0开始计算的字符串的索引

返回值

成功: 返回剩余的字符串数量
失败: 返回 -1

注意/说明

None.

相关

_GUICtrlComboBox_AddString, _GUICtrlComboBox_ResetContent

示例/演示


#include <GuiComboBox.au3>
#include <GUIConstantsEx.au3>
#include <Constants.au3>

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

_Main()

Func _Main()
    Local $hCombo

    ; 创建 GUI
    GUICreate("ComboBox Delete String", 400, 296)
    $hCombo = GUICtrlCreateCombo("", 2, 2, 396, 296)
    GUISetState()

    ; Add drives
    _GUICtrlComboBox_AddDir($hCombo, "", $DDL_DRIVES, False)

    ;Delete string
    MsgBox(4160, "信息", "Deleting string at index 1")
    _GUICtrlComboBox_DeleteString($hCombo, 1)

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