.NET:如何将图像加载到 ImageList 中?

发布于 2024-07-13 09:03:01 字数 1002 浏览 10 评论 0 原文

我有一个包含一系列图像的图像,例如:

“在此处输入图像描述"

在过去,我会将图像加载到 ImageList 通用控件使用以下 API 调用:

什么是与 实现相同结果的 .NET 方法.NET ImageList 类


注意:该图像只是一个示例。 我的实际图像是传统的工具栏图像列表图像,包含 179 个 16x16 按钮图像。

i have an image that contains a series of images, e.g.:

enter image description here

In the olden days, i would load the image into the ImageList common control using such API calls as:

What is the .NET method of achieving the same result with the .NET ImageList class?


Note: The image is only an example. My actual image is a traditional toolbar image list image, with 179 16x16 button images.

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

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

发布评论

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

评论(2

海之角 2024-07-20 09:03:01

听起来您正在尝试添加单个图像对象中包含的多个图像。 在这种情况下,您需要使用

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"

溺深海 2024-07-20 09:03:01

使用 imageList1.Images.Add() 怎么样?

What about using imageList1.Images.Add()?

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