gpt4 book ai didi

delphi - 清除 Firemonkey TListView 搜索文本

转载 作者:行者123 更新时间:2023-12-02 05:38:22 24 4
gpt4 key购买 nike

ListView1.items.filter := nil;

我知道上面的内容将清除 ListView 的过滤器,但是如果搜索对于 ListView 可见并且在其中输入了某些内容,是否可以清除其中的文本?

最佳答案

for I := 0 to ListView1.Controls.Count-1 do
if ListView1.Controls[I] is TSearchBox then
begin
TSearchBox(ListView1.Controls[I]).Text := '';
end;

(基于 DocWiki!)

关于delphi - 清除 Firemonkey TListView 搜索文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38266827/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com