delphi ListView 排序功能


本文整理自网络,侵删。

 private
{ Private declarations }
SortCol: Integer;
SortWay: Integer;

procedure TMainFrm.ListView1ColumnClick(Sender: TObject; Column: TListColumn);
begin
SortCol:=Column.Index;
if (SortWay=1) then SortWay:=-1 else SortWay:=1;
(Sender as TCustomListView).AlphaSort;
end;

procedure TMainFrm.ListView1Compare(Sender: TObject; Item1, Item2: TListItem; Data: Integer; var Compare: Integer);
var
t: Integer;
begin
if (SortCol=0) then
begin
Compare:=SortWay * CompareText(Item1.Caption,Item2.Caption);
end else
begin
t:=SortCol-1;
Compare:=SortWay * CompareText(Item1.SubItems[t],Item2.SubItems[t]);
end;
end;

相关阅读 >>

Delphi winapi: isiconic、iszoomed - 分别判断窗口是否已最小化、最大化

Delphi 2009 之 tballoonhint

Delphi获取身份证号码验证码算法

Delphixe 如何调用stringtojstring

线程池的概念

Delphi xe5 for android 退出提示

Delphi 一个中英文记录Delphi实现

Delphi idhttp最简洁的修改和取得cookie例子

Delphi 之 定时器 (ttimer组件)

判断url的有效性

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...