5 writes to ImageList
System.Windows.Forms (5)
System\Windows\Forms\ContextMenuStrip.cs (1)
58contextMenuStrip.ImageList = ImageList;
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (3)
1208_toolStrip.ImageList = _largeButtonImages; 1217_toolStrip.ImageList = _normalButtonImages; 3966_toolStrip.ImageList = LargeButtons ? _largeButtonImages : _normalButtonImages;
System\Windows\Forms\Printing\PrintPreviewDialog.cs (1)
935_toolStrip1.ImageList = _imageList;
10 references to ImageList
System.Windows.Forms (10)
System\Windows\Forms\ContextMenuStrip.cs (1)
58contextMenuStrip.ImageList = ImageList;
System\Windows\Forms\Controls\ToolStrips\ToolStripItem.cs (8)
1031if (image is null && Owner?.ImageList is not null && ImageIndexer.ActualIndex >= 0) 1034if (!disposing && ImageIndexer.ActualIndex < Owner.ImageList.Images.Count) 1037image = Owner.ImageList.Images[ImageIndexer.ActualIndex]; 1123&& Owner.ImageList is not null && ImageIndexer.Index >= Owner.ImageList.Images.Count) 1125return Owner.ImageList.Images.Count - 1; 1562bool usingImageList = ((Owner is not null) && (Owner.ImageList is not null) && (ImageIndexer.ActualIndex >= 0)); 1574? Owner?.ImageList?.ImageSize ?? Size.Empty
System\Windows\Forms\Controls\ToolStrips\ToolStripItem.ToolStripItemImageIndexer.cs (1)
20get => _item.Owner?.ImageList;