ListView 中的 ImageList

发布于 2024-11-16 02:40:33 字数 172 浏览 2 评论 0原文

我在列表视图中有一个图像列表,以前显示的唯一图像是 pdf。这意味着我可以有效地处理双击事件来打开 pdf。现在我有一个不同的要求,要显示文件夹中其他文件的一些占位符缩略图。 listView_DoubleClick 事件中有没有办法确定在图像列表中单击了哪些图片,这样我就可以确定如何处理该事件?

感谢您抽出时间

I have an image list in a list view where previously the only images displayed were pdf's. This meant that that i could handle the double click event effectively to open pdf's. Now i have a different requirement to display some place holder thumbnails for other files in a folder. Is there a way in the listView_DoubleClick event to determine what picture was clicked in the image list, that way i can determine how to handle the event?

Thanks for your time

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

烟凡古楼 2024-11-23 02:40:33

确定单击了哪个项目,当您拥有 ListViewItem 实例时,您可以检查 ListViewItem.ImageIndex 属性。

编辑:
ListView.SelectedItem 和/或 ListView.SelectedItems 是您的朋友。

Determine what item was clicked, when you then have a ListViewItem instance you can check for the ListViewItem.ImageIndex property.

Edit:
ListView.SelectedItem and/or ListView.SelectedItems are your friends here.

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