函数参考


_GUICtrlListView_GetISearchString

检索控件的增量搜索字符串

#Include <GuiListView.au3>
_GUICtrlListView_GetISearchString($hWnd)

参数

$hWnd 控件句柄

返回值

返回增量搜索字符串;如果不存在搜索字符串,则返回空字符串

注意/说明

 增字搜索字符串是指列表视图具有输入焦点时,用户键入的字符串顺序.
 每当用户键入一个字符时,系统自动附加到搜索字符串中,然后搜索匹配的项目.
 如果系统找到了匹配,则选中该项目;必要时,将其滚动到视图中.
 超时时间关联用户键入的每个字符,如果在键入另一字符前已经超时,增量搜索字符串将重置.

相关

示例/演示


#include <GUIConstantsEx.au3>
#include <GuiListView.au3>
#include <GuiImageList.au3>

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

_Main()

Func _Main()
    Local $hImage, $hListView

    GUICreate("ListView Get ISearch", 400, 300)

    $hListView = GUICtrlCreateListView("", 2, 2, 394, 268)
    GUICtrlSetStyle($hListView, $LVS_ICON)
    GUISetState()

    ; 加载图像
    $hImage = _GUIImageList_Create()
    _GUIImageList_Add($hImage, _GUICtrlListView_CreateSolidBitMap($hListView, 0xFF0000, 16, 16))
    _GUICtrlListView_SetImageList($hListView, $hImage, 0)

    _GUICtrlListView_BeginUpdate($hListView)
    For $x = 1 To 10
        _GUICtrlListView_InsertItem($hListView, "Item " & $x, -1, 0)
    Next
    _GUICtrlListView_EndUpdate($hListView)

    Send("Item 1")

    ; Get incremental search string
    MsgBox(4160, "信息", "Incremental Search String: " & _GUICtrlListView_GetISearchString($hListView))

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

    GUIDelete()
EndFunc   ;==>_Main