Base:
property
BackgroundImage
System.Windows.Forms.Control.BackgroundImage
8 writes to BackgroundImage
System.Windows.Forms.Tests (7)
System\Windows\Forms\PropertyGridTests.cs (7)
413BackgroundImage = value 419control.BackgroundImage = value; 441control.BackgroundImage = image1; 446control.BackgroundImage = image1; 452control.BackgroundImage = image2; 457control.BackgroundImage = null; 463control.BackgroundImage = image1;
System.Windows.Forms.UI.IntegrationTests (1)
PropertyGridTests.cs (1)
182_propertyGrid.BackgroundImage = newImage;
10 references to BackgroundImage
System.Windows.Forms.Tests (8)
System\Windows\Forms\PropertyGridTests.cs (8)
41Assert.Null(control.BackgroundImage); 415Assert.Same(value, control.BackgroundImage); 420Assert.Same(value, control.BackgroundImage); 442Assert.Same(image1, control.BackgroundImage); 447Assert.Same(image1, control.BackgroundImage); 453Assert.Same(image2, control.BackgroundImage); 458Assert.Null(control.BackgroundImage); 464Assert.Same(image1, control.BackgroundImage);
System.Windows.Forms.UI.IntegrationTests (2)
PropertyGridTests.cs (2)
179_propertyGrid.BackgroundImage.Should().BeNull(); 183_propertyGrid.BackgroundImage.Should().Be(newImage);