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)
445BackgroundImage = value 451control.BackgroundImage = value; 471control.BackgroundImage = image1; 476control.BackgroundImage = image1; 482control.BackgroundImage = image2; 487control.BackgroundImage = null; 493control.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)
34Assert.Null(control.BackgroundImage);
TextBoxBaseTests.cs (7)
447Assert.Same(value, control.BackgroundImage); 452Assert.Same(value, control.BackgroundImage); 472Assert.Same(image1, control.BackgroundImage); 477Assert.Same(image1, control.BackgroundImage); 483Assert.Same(image2, control.BackgroundImage); 488Assert.Null(control.BackgroundImage); 494Assert.Same(image1, control.BackgroundImage);
TextBoxTests.cs (1)
33Assert.Null(control.BackgroundImage);