Base:
property
BackgroundImage
System.Windows.Forms.Control.BackgroundImage
8 writes to BackgroundImage
System.Windows.Forms.Tests (7)
System\Windows\Forms\PropertyGridTests.cs (7)
415BackgroundImage = value 421control.BackgroundImage = value; 443control.BackgroundImage = image1; 448control.BackgroundImage = image1; 454control.BackgroundImage = image2; 459control.BackgroundImage = null; 465control.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)
43Assert.Null(control.BackgroundImage); 417Assert.Same(value, control.BackgroundImage); 422Assert.Same(value, control.BackgroundImage); 444Assert.Same(image1, control.BackgroundImage); 449Assert.Same(image1, control.BackgroundImage); 455Assert.Same(image2, control.BackgroundImage); 460Assert.Null(control.BackgroundImage); 466Assert.Same(image1, control.BackgroundImage);
System.Windows.Forms.UI.IntegrationTests (2)
PropertyGridTests.cs (2)
179_propertyGrid.BackgroundImage.Should().BeNull(); 183_propertyGrid.BackgroundImage.Should().Be(newImage);