我正在使用Delphi 2010和TListView列出名称和其他数据。前两列是姓氏和名字


  标题=姓氏
  SubItems [0] =名字


如何按这两列对ListView进行排序?这些只是Listview的排序依据,我希望始终保持这种排序(添加,编辑,删除项目时)

我该怎么做?

最佳答案

SortType设置为'stBoth',并实现OnCompare事件处理程序。例:

procedure TForm1.ListView1Compare(Sender: TObject; Item1, Item2: TListItem;
  Data: Integer; var Compare: Integer);
var
  S1, S2: string;
begin
  S1 := Item1.Caption;
  if Item1.SubItems.Count > 0 then
    S1 := S1 + Item1.SubItems[0];
  S2 := Item2.Caption;
  if Item2.SubItems.Count > 0 then
    S2 := S2 + Item2.SubItems[0];

  Compare := CompareText(S1, S2);
end;

10-06 10:19