我使用Delphi 2010和TListView列出名称和其他数据。前两列是Last Name&名字
Caption =姓氏
SubItems [0] =名字
如何通过这两列对ListView进行排序?这些只是列表视图排序的列,我希望始终保持排序(添加,编辑,删除项目时)
我该如何做到这一点?
答案 0 :(得分:7)
将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;