Base:
property
BackgroundImage
System.Windows.Forms.Control.BackgroundImage
1 override of BackgroundImage
System.Windows.Forms (1)
System\Windows\Forms\Controls\RichTextBox\RichTextBox.cs (1)
180
public override Image?
BackgroundImage
8 writes to BackgroundImage
System.Windows.Forms (1)
System\Windows\Forms\Controls\RichTextBox\RichTextBox.cs (1)
183
set => base.
BackgroundImage
= value;
System.Windows.Forms.Tests (7)
TextBoxBaseTests.cs (7)
445
BackgroundImage
= value
451
control.
BackgroundImage
= value;
471
control.
BackgroundImage
= image1;
476
control.
BackgroundImage
= image1;
482
control.
BackgroundImage
= image2;
487
control.
BackgroundImage
= null;
493
control.
BackgroundImage
= image1;
10 references to BackgroundImage
System.Windows.Forms (1)
System\Windows\Forms\Controls\RichTextBox\RichTextBox.cs (1)
182
get => base.
BackgroundImage
;
System.Windows.Forms.Tests (9)
System\Windows\Forms\DataGridViewTextBoxEditingControlTests.cs (1)
34
Assert.Null(control.
BackgroundImage
);
TextBoxBaseTests.cs (7)
447
Assert.Same(value, control.
BackgroundImage
);
452
Assert.Same(value, control.
BackgroundImage
);
472
Assert.Same(image1, control.
BackgroundImage
);
477
Assert.Same(image1, control.
BackgroundImage
);
483
Assert.Same(image2, control.
BackgroundImage
);
488
Assert.Null(control.
BackgroundImage
);
494
Assert.Same(image1, control.
BackgroundImage
);
TextBoxTests.cs (1)
33
Assert.Null(control.
BackgroundImage
);