3 writes to Image
System.Windows.Forms (2)
System\Windows\Forms\Controls\Labels\Label.cs (1)
1404
private void ResetImage() =>
Image
= null;
System\Windows\Forms\Controls\ToolStrips\ToolStripScrollButton.cs (1)
43
Image
= (up) ? UpImage : DownImage
System.Windows.Forms.Tests (1)
System\Windows\Forms\LabelTests.cs (1)
683
label.
Image
= image;
9 references to Image
System.Windows.Forms (7)
System\Windows\Forms\Controls\Labels\Label.cs (3)
385
if (
Image
== value)
1252
ImageAnimator.UpdateFrames(
Image
);
1255
Image? i =
Image
;
System\Windows\Forms\Controls\Labels\LinkLabel.cs (2)
969
ImageAnimator.UpdateFrames(
Image
);
1150
if (
Image
is not { } image)
System\Windows\Forms\Controls\ToolStrips\ToolStripScrollButton.cs (2)
126
preferredSize.Height = (Label.
Image
is not null) ? Label.
Image
.Height + 4 : 0;
System.Windows.Forms.Tests (2)
System\Windows\Forms\LabelTests.cs (2)
69
Assert.Null(control.
Image
);
689
Assert.Null(label.
Image
); // Image should be reset.