gpt4 book ai didi

c# - imageList控件的使用方法

转载 作者:太空狗 更新时间:2023-10-29 18:13:43 27 4
gpt4 key购买 nike

我有一些手动添加到 imageList Cotrol 的图像。现在我需要根据键索引从 imageList 中删除 thart 图像并设置为面板背景。

我应该怎么做

最佳答案

Images 添加到图像列表中的 ImageList.ImageCollection , 所以它是集合类型那么你可以使用大部分的集合方法。

使用 Images 属性添加、删除和访问要在面板背景中显示的图像。 Add(key,image)
Remove()
RemoveAt()
RemoveByKey()

查看 ImageList Class 上的示例文档以了解如何务实地使用所有这些方法。

添加图片:

imageList1.Images.Add("pic1", Image.FromFile("c:\\mypic.jpg"));

从集合中删除图像:

imageList1.Images.RemoveAt(listBox1.SelectedIndex);
imageList1.Images..RemoveByKey("pic1");

要访问图像,从图像集合中获取图像

panel1.BackgroundImage = imageList1.Images[0];

panel1.BackgroundImage = imageList1.Images["pic1"];

关于c# - imageList控件的使用方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8587269/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com