c# 检索对项目资源的引用 (VS2008)

发布于 2024-07-10 14:35:48 字数 105 浏览 2 评论 0 原文

我当前有一个列表视图,我想为每个条目添加适当的图标。

我在项目资源中创建了一个图标,并将其命名为“errorIcon.ico”。 如何引用此图标/资源并在列表视图中使用它?

I currently have a listview and I want to add an appropriate icon to each entry.

I have created an icon within the Project resources and called it 'errorIcon.ico'. How can I reference this icon/resource and use it within a listview?

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

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

发布评论

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

评论(1

青朷 2024-07-17 14:35:48

首先,您需要创建一个 ImageList 实例,请参阅 http://msdn.microsoft.com/en-us/library/system.windows.forms.imagelist.aspx(只需将其放在表单/用户控件上)。 使用属性视图将图标上传到图像列表。

然后,将图像列表分配给每个ListViewItem(listViewItem.ImageList = imageList)并设置图标索引(listViewItem.ImageIndex = 0

请查看此处的备注详细信息: http://msdn.microsoft .com/en-us/library/system.windows.forms.listviewitem.imageindex.aspx

First you need to create an ImageList instance, see http://msdn.microsoft.com/en-us/library/system.windows.forms.imagelist.aspx (just drop it on your form/user control). Use the properties view to upload your icons to the image list.

Then, assign the image list to every ListViewItem (listViewItem.ImageList = imageList) and set the icon index (listViewItem.ImageIndex = 0)

Take a look at the remarks here for more information: http://msdn.microsoft.com/en-us/library/system.windows.forms.listviewitem.imageindex.aspx

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