20 references to imageInfoCollection
System.Windows.Forms (20)
winforms\Managed\System\WinForms\ImageList.cs (20)
1032for (int i = 0; i < imageInfoCollection.Count; i++) { 1033ImageInfo image = imageInfoCollection[i] as ImageInfo; 1048if (imageInfoCollection!= null) 1049imageInfoCollection.Clear(); 1052imageInfoCollection.Add(new ImageCollection.ImageInfo()); 1235Debug.Assert((this.Count == imageInfoCollection.Count), "The count of these two collections should be equal."); 1252Debug.Assert((this.Count == imageInfoCollection.Count), "The count of these two collections should be equal."); 1357imageInfoCollection.Add(new ImageInfo()); 1362imageInfoCollection.Add(imageInfo); 1421imageInfoCollection.Clear(); 1492if ((imageInfoCollection[lastAccessedIndex] != null) && 1493(WindowsFormsUtils.SafeCompareStrings(((ImageInfo)imageInfoCollection[lastAccessedIndex]).Name, key, /* ignoreCase = */ true))) { 1500if ((imageInfoCollection[i] != null) && 1501(WindowsFormsUtils.SafeCompareStrings(((ImageInfo)imageInfoCollection[i]).Name, key, /* ignoreCase = */ true))) { 1584if ((imageInfoCollection != null) && (index >= 0 && index < imageInfoCollection.Count)) { 1585imageInfoCollection.RemoveAt(index); 1612if (imageInfoCollection[index] == null) { 1613imageInfoCollection[index] = new ImageInfo(); 1616((ImageInfo)imageInfoCollection[index]).Name = name;