如何在Tlistview中基于subitem[x]排序
如何在 tlistview
中对 subitem[x]
中存在的数据进行排序?
How to sort in tlistview
with data present in subitem[x]
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在 tlistview
中对 subitem[x]
中存在的数据进行排序?
How to sort in tlistview
with data present in subitem[x]
?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
设置
SortType := stData
并写入实例。如果比较为负数,则 Item1 应位于 Item2 之前;如果比较为正,则相反。因此,此示例假设 SubItem[x] 包含整数,将根据 SubItem[x] 的数值对项目进行排序。
另一方面,如果 SubItem[x] 包含字符串,那么您可以编写
Set
SortType := stData
and writefor instance. If compare is negative, Item1 should come before Item2; if compare is positive, the opposite applies. Thus this example, which assumes that SubItem[x] contains an integer, will sort the items according to the numerical value of SubItem[x].
If, on the other hand, SubItem[x] contains strings, then you can write