在 C# Winforms 的列表视图中查找当前对用户可见的项目的索引

发布于 2024-12-23 05:48:40 字数 88 浏览 0 评论 0原文

我正在使用附加到图像列表的列表视图控件。我想获取用户当前看到的项目的索引,即:在用户视图中,以便我可以加载相应的图像,而忽略项目的图像在用户视图之外。 请帮帮我。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦里泪两行 2024-12-30 05:48:40

假设列表的“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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文