Base:
property
BackgroundImage
System.Windows.Forms.Control.BackgroundImage
1 override of BackgroundImage
System.Windows.Forms (1)
System\Windows\Forms\Controls\RichTextBox\RichTextBox.cs (1)
180public override Image? BackgroundImage
8 writes to BackgroundImage
System.Windows.Forms (1)
System\Windows\Forms\Controls\RichTextBox\RichTextBox.cs (1)
183set => base.BackgroundImage = value;
System.Windows.Forms.Tests (7)
TextBoxBaseTests.cs (7)
447BackgroundImage = value 453control.BackgroundImage = value; 473control.BackgroundImage = image1; 478control.BackgroundImage = image1; 484control.BackgroundImage = image2; 489control.BackgroundImage = null; 495control.BackgroundImage = image1;
10 references to BackgroundImage
System.Windows.Forms (1)
System\Windows\Forms\Controls\RichTextBox\RichTextBox.cs (1)
182get => base.BackgroundImage;
System.Windows.Forms.Tests (9)
System\Windows\Forms\DataGridViewTextBoxEditingControlTests.cs (1)
36Assert.Null(control.BackgroundImage);
TextBoxBaseTests.cs (7)
449Assert.Same(value, control.BackgroundImage); 454Assert.Same(value, control.BackgroundImage); 474Assert.Same(image1, control.BackgroundImage); 479Assert.Same(image1, control.BackgroundImage); 485Assert.Same(image2, control.BackgroundImage); 490Assert.Null(control.BackgroundImage); 496Assert.Same(image1, control.BackgroundImage);
TextBoxTests.cs (1)
35Assert.Null(control.BackgroundImage);