我有一个包含4列的TListview(当然都是字符串)但是,我将数据存储在其中:
Caption
:任意字符串
SubItems[0]
:整数,例如'5016'
SubItems[1]
:日期,例如'03/22/13'
Subitems[2]
:任意字符串
当用户点击coolumn标题时,我使用以下代码进行排序
我正在查看这篇文章"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列,以便它们不被排序为字符串?
thankx
答案 0 :(得分:3)
如果你有两个包含整数的字符串,你希望将它们作为整数进行比较,然后将它们从文本转换为整数,并进行数字比较。
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;
具体如何实现后一个功能取决于您希望如何从文本转换为日期/时间的数字表示。