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)
447
BackgroundImage
= value
453
control.
BackgroundImage
= value;
473
control.
BackgroundImage
= image1;
478
control.
BackgroundImage
= image1;
484
control.
BackgroundImage
= image2;
489
control.
BackgroundImage
= null;
495
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)
36
Assert.Null(control.
BackgroundImage
);
TextBoxBaseTests.cs (7)
449
Assert.Same(value, control.
BackgroundImage
);
454
Assert.Same(value, control.
BackgroundImage
);
474
Assert.Same(image1, control.
BackgroundImage
);
479
Assert.Same(image1, control.
BackgroundImage
);
485
Assert.Same(image2, control.
BackgroundImage
);
490
Assert.Null(control.
BackgroundImage
);
496
Assert.Same(image1, control.
BackgroundImage
);
TextBoxTests.cs (1)
35
Assert.Null(control.
BackgroundImage
);