如何将图像添加到imagelist的特定索引?

时间:2018-10-09 09:47:44

标签: c# imagelist

c#visualstudio

我想将imagelist1的index [0]复制到imagelist2的index [0]作为备份。 我该怎么办?

1 个答案:

答案 0 :(得分:0)

我认为你是这个意思。确保使用System.Collection.Generics。

// Declaring your lists   
List<Image> imagelist1 = new List<Image>();
List<Image> imagelist2 = new List<Image>();

// Let's say you filled these list here.

// Copy image with index 0 to the second imagelist.
imagelist2.Add(imagelist1[0]);