3

我有一个有 4 列(当然都是字符串)的 TListview,但是,我将数据存储在其中:

  • Caption: 任何字符串

  • SubItems[0]: 整数,例如'5016'

  • SubItems[1]: 日期,例如'03/22/13'

  • Subitems[2]: 任何字符串

当用户单击酷栏标题时,我使用以下代码进行排序

我在看这篇文章“how to sort in Tlistview based on subitem[x]”,但我不知道如何考虑不同的列类型。

procedure TfrmFind.lvwTagsColumnClick(Sender: TObject; Column: TListColumn);
begin
 ColumnToSort := Column.Index;
 (Sender as TCustomListView).AlphaSort;
end;

procedure TfrmFind.lvwTagsCompare(Sender: TObject; Item1, Item2: TListItem;
  Data: Integer; var Compare: Integer);
var
 ix: Integer;
 begin
 if ColumnToSort = 0 then
 Compare := CompareText(Item1.Caption,Item2.Caption)
 else begin
 ix := ColumnToSort - 1;
 Compare := CompareText(Item1.SubItems[ix],Item2.SubItems[ix]);
 end;
end;

如何考虑 Integer 和 Date 列,使它们不作为字符串排序?

谢谢

4

1 回答 1

5

如果您有两个包含整数的字符串,并且您希望将它们作为整数进行比较,则将它们从文本转换为整数,然后进行数字比较。

function CompareTextAsInteger(const s1, s2: string): Integer;
begin
  Result := CompareValue(StrToInt(s1), StrToInt(s2));
end;

日期也是如此。将它们从文本转换为数值,例如TDateTime值。然后进行数值比较。

function CompareTextAsDateTime(const s1, s2: string): Integer;
begin
  Result := CompareDateTime(StrToDateTime(s1), StrToDateTime(s2));
end;

实现后一个函数的具体方式取决于您希望如何从文本转换为日期/时间的数字表示。

于 2013-03-22T14:52:06.713 回答