嗨,我在 delphi 中遇到增量搜索问题。
我看过这个http://delphi.about.com/od/vclusing/a/lb_incremental.htm 但这在firemonkey中不起作用所以我想出了这个:
for I := 0 to lstbxMapList.Items.Count-1 do
begin
if lstbxMapList.Items[i] = edtSearch.Text then
begin
lstbxMapList.ItemByIndex(i).Visible := True;
end;
if lstbxMapList.Items[I] <> edtSearch.Text then
begin
lstbxMapList.ItemByIndex(i).Visible := False;
end;
end;
当我使用它时,列表框只是空白。