5 writes to ImageList
System.Windows.Forms (5)
System\Windows\Forms\ContextMenuStrip.cs (1)
58
contextMenuStrip.
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)
58
contextMenuStrip.ImageList =
ImageList
;
System\Windows\Forms\Controls\ToolStrips\ToolStripItem.cs (8)
1031
if (image is null && Owner?.
ImageList
is not null && ImageIndexer.ActualIndex >= 0)
1034
if (!disposing && ImageIndexer.ActualIndex < Owner.
ImageList
.Images.Count)
1037
image = Owner.
ImageList
.Images[ImageIndexer.ActualIndex];
1123
&& Owner.
ImageList
is not null && ImageIndexer.Index >= Owner.
ImageList
.Images.Count)
1125
return Owner.
ImageList
.Images.Count - 1;
1562
bool 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)
20
get => _item.Owner?.
ImageList
;