如何从较小的组件图像构建 C# ImageList 图像?
我想为 C# WinForms TreeList 控件制作状态图标。 这些状态是其他状态的组合(例如,用户节点可能处于非活动或禁止状态,或者非活动且被禁止状态),并且状态图标由不重叠的较小字形组成。
如果可以的话,我真的很想避免手动生成状态图标的所有可能排列。
是否可以创建一个图像列表(或只是一堆位图资源或其他东西),我可以使用它以编程方式生成 ImageList?
我正在研究 System.Drawing 类,但没有什么让我惊讶的。 另外,我还坚持使用.Net 2.0。
I'd like to make status icons for a C# WinForms TreeList control. The statuses are combinations of other statuses (eg. a user node might be inactive or banned or inactive and banned), and the status icon is comprised of non-overlapping, smaller glyphs.
I'd really like to avoid having to hand-generate all the possibly permutations of status icons if I can avoid it.
Is it possible to create an image list (or just a bunch of bitmap resources or something) that I can use to generate the ImageList programmatically?
I'm poking around the System.Drawing classes and nothing's jumping out at me. Also, I'm stuck with .Net 2.0.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需使用 ImageList 中的 Images.Add 即可添加各个图像。 所以,像这样:
Just use Images.Add from the ImageList to add in the individual images. So, something like: