Delphi XE5的新功能“ TListView内置搜索过滤”

在窗体的OnCreate事件中初始化TListView项。   procedure TForm1.FormCreate(Sender: TObject); const   Books: array [0 .. 4] of string = (     'Delph abc',     'Delphi XE2入门',     ' by DelphiXE',     'Delphi 2009 handbook'); var   Book: string; begin   for Book in Books do   begin     ListView1.Items.Add.Text := Book;   end; end; 在Button1的OnClick事件中执行搜索过滤。   procedure TForm1.Button1Click(Sender: TObject); var   SearchResponder: ISearchResponder; begin   SearchResponder := ListView1 as ISearchResponder;   SearchResponder.SetFilterPredicate(     function(Arg: string): Boolean     begin       Result := Arg.StartsWith('Delphi');     end); end;
上一篇:实验吧[WEB]——what a fuck!这是什么鬼东西?


下一篇:Burst Balloons(leetcode戳气球,困难)从指数级时间复杂度到多项式级时间复杂度的超详细优化思路(回溯到分治到动态规划)