计算 TListview 组中的项目数
当我尝试计算组中的项目数时,我得到了集合中的项目总数。如何获得每组中的项目数?
When I attempt to count the number of items in a group I get the total number of items in the collection. How do you get the number of items in each group?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这可能是最简单的方法。
This is probably the simplest way.
仅在 Vista 及更高版本下,
LVM_GETGROUPINFO
和LVM_GETGROUPINFOBYINDEX
消息返回一个 LVGROUP 结构,该结构具有指定组中项目数的cItems
成员。Under Vista and later only, the
LVM_GETGROUPINFO
andLVM_GETGROUPINFOBYINDEX
messages return a LVGROUP structure that has acItems
member specifying the number of items in the group.