2 writes to ImageList
System.Windows.Forms (2)
System\Windows\Forms\Controls\Labels\Label.cs (2)
394
ImageList
= null;
938
private void DetachImageList(object? sender, EventArgs e) =>
ImageList
= null;
8 references to ImageList
System.Windows.Forms (8)
System\Windows\Forms\Controls\Labels\Label.cs (7)
372
if (image is null &&
ImageList
is not null && ImageIndexer.ActualIndex >= 0)
374
return
ImageList
.Images[ImageIndexer.ActualIndex];
421
if (
ImageList
is not null && (index >=
ImageList
.Images.Count))
423
return
ImageList
.Images.Count - 1;
508
ImageList? imageList =
ImageList
;
947
if (
ImageList
is { } imageList)
System\Windows\Forms\Controls\Labels\Label.LabelImageIndexer.cs (1)
24
get { return _owner.
ImageList
; }