我有一些手动添加到imageList控件的图像。
现在,我需要根据键索引从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");
要访问图像,请从imagecollection获取图像
panel1.BackgroundImage = imageList1.Images[0];
或者
panel1.BackgroundImage = imageList1.Images["pic1"];
关于c# - 如何使用imageList控件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8587269/