在 C# Winforms 的列表视图中查找当前对用户可见的项目的索引
我正在使用附加到图像列表的列表视图控件。我想获取用户当前看到的项目的索引,即:在用户视图中,以便我可以加载相应的图像,而忽略项目的图像在用户视图之外。 请帮帮我。
I'm using a list view control attached to an image list.I want to obtain the indexes of the items that are currently seen by the user ie:in user view so that i can load the corresponding images only neglecting the images for the items out of user view.
Please Help me out.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设列表的“View”属性设置为“Details”或“List”,您可以使用 .TopItem 属性查找列表中的第一个可见项目。然后,根据您的控制几何图形,您应该能够计算出需要绘制的项目数量。
http://msdn.microsoft.com/en -us/library/system.windows.forms.listview.topitem.aspx
Assuming that your list's "View" property is set to 'Details' or 'List' you can use the .TopItem property to find the first visible item in the list. From your control geometry you should then be able to figure how many items beyond that you need to draw.
http://msdn.microsoft.com/en-us/library/system.windows.forms.listview.topitem.aspx