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