.NET:如何将图像加载到 ImageList 中?
我有一个包含一系列图像的图像,例如:
在过去,我会将图像加载到 ImageList 通用控件使用以下 API 调用:
什么是与 实现相同结果的 .NET 方法.NET ImageList 类?
注意:该图像只是一个示例。 我的实际图像是传统的工具栏图像列表图像,包含 179 个 16x16 按钮图像。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
听起来您正在尝试添加单个图像对象中包含的多个图像。 在这种情况下,您需要使用
imageList1.Images.AddStrip(imageSeries)
来自 msdn 文档:“条带是单个图像,被视为并排排列的多个图像”
It sounds like you're trying to add several images included in a single image object. In this case you'd want to use
imageList1.Images.AddStrip(imageSeries)
From the msdn docs: "A strip is a single image that is treated as multiple images arranged side-by-side"
使用 imageList1.Images.Add() 怎么样?
What about using imageList1.Images.Add()?