Windows Forms .NET 3.5 使用 Treeview 控件的资源图像
填充我的树视图时,我想使用与我在工具栏等中使用的相同图像,这些图像存储在资源文件中。
树视图似乎通过图像列表接受图像。
我正在考虑在加载时反映资源并将其添加到图像列表中......
你们通常如何做到这一点?
When populating my treeview I would like to use the same images that I use in my toolbar etc which are stored in a resource file.
The treeview seems to on accept images via an image list.
I was thinking of reflecting and adding the resources to an image list on load...
How do you guyz n girlz generally do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只是为了完整性,使用“大锤”方法添加资源中的所有图像
Just for completeness, that "sledge hammer" approach to add all images from a resource
我通常有一个使用资源文件中的图像填充的图像列表。这可以在初始化表单时轻松完成。
示例(Resources.resx 中包含三个图像,分别称为 one、two 和 two):
I usually have an image list that I populate using images from the resource file. This can easily be done when initializing the form.
Example (with three images in Resources.resx, called one, two and three):