1 write to imageList
System.Windows.Forms (1)
winforms\Managed\System\WinForms\PropertyGrid.cs (1)
2228imageList = null;
30 references to imageList
System.Windows.Forms (30)
winforms\Managed\System\WinForms\PropertyGrid.cs (30)
1522if (this.imageList != null && this.imageList[LARGE_BUTTONS] != null) { 1523toolStrip.ImageScalingSize = this.imageList[LARGE_BUTTONS].ImageSize; 1527if (this.imageList != null && this.imageList[NORMAL_BUTTONS] != null) { 1528toolStrip.ImageScalingSize = this.imageList[NORMAL_BUTTONS].ImageSize; 1532toolStrip.ImageList = imageList[this.buttonType]; 1657int result = imageList[NORMAL_BUTTONS].Images.Count; 1658imageList[NORMAL_BUTTONS].Images.Add(image); 2222if (imageList != null) { 2223for (int i = 0; i < imageList.Length; i++) { 2224if(imageList[i] != null) { 2225imageList[i].Dispose(); 2444if (this.imageList[LARGE_BUTTONS] == null) { 2446this.imageList[LARGE_BUTTONS] = new ImageList(); 2447this.imageList[LARGE_BUTTONS].ImageSize = largeButtonSize; 2460ImageList.ImageCollection images = imageList[NORMAL_BUTTONS].Images; 2464this.imageList[LARGE_BUTTONS].Images.Add(new Bitmap((Bitmap)images[i], largeButtonSize.Width, largeButtonSize.Height)); 2484this.imageList[LARGE_BUTTONS].Images.Add(largeBitmap); 4022imageList[NORMAL_BUTTONS].Images.RemoveAt(index); 4023if (imageList[LARGE_BUTTONS] != null) { 4024imageList[LARGE_BUTTONS].Images.RemoveAt(index); 4374if (imageList[NORMAL_BUTTONS] == null || fullRebuild) { 4375imageList[NORMAL_BUTTONS] = new ImageList(); 4377imageList[NORMAL_BUTTONS].ImageSize = normalButtonSize; 4447items = imageList[NORMAL_BUTTONS].Images.Count; 4501if (imageList[LARGE_BUTTONS] != null) { 4502imageList[LARGE_BUTTONS].Dispose(); 4503imageList[LARGE_BUTTONS] = null; 4510toolStrip.ImageList = imageList[this.buttonType];