Base:
property
BackgroundImageLayout
System.Windows.Forms.Control.BackgroundImageLayout
8 writes to BackgroundImageLayout
System.Windows.Forms.Tests (7)
System\Windows\Forms\PropertyGridTests.cs (7)
476BackgroundImageLayout = value 482control.BackgroundImageLayout = value; 503control.BackgroundImageLayout = ImageLayout.Center; 508control.BackgroundImageLayout = ImageLayout.Center; 513control.BackgroundImageLayout = ImageLayout.Stretch; 519control.BackgroundImageLayout = ImageLayout.Center; 529Assert.Throws<InvalidEnumArgumentException>("value", () => control.BackgroundImageLayout = value);
System.Windows.Forms.UI.IntegrationTests (1)
PropertyGridTests.cs (1)
172_propertyGrid.BackgroundImageLayout = ImageLayout.Center;
9 references to BackgroundImageLayout
System.Windows.Forms.Tests (7)
System\Windows\Forms\PropertyGridTests.cs (7)
44Assert.Equal(ImageLayout.Tile, control.BackgroundImageLayout); 478Assert.Equal(value, control.BackgroundImageLayout); 483Assert.Equal(value, control.BackgroundImageLayout); 504Assert.Equal(ImageLayout.Center, control.BackgroundImageLayout); 509Assert.Equal(ImageLayout.Center, control.BackgroundImageLayout); 514Assert.Equal(ImageLayout.Stretch, control.BackgroundImageLayout); 520Assert.Equal(ImageLayout.Center, control.BackgroundImageLayout);
System.Windows.Forms.UI.IntegrationTests (2)
PropertyGridTests.cs (2)
170_propertyGrid.BackgroundImageLayout.Should().Be(ImageLayout.Tile); 173_propertyGrid.BackgroundImageLayout.Should().Be(ImageLayout.Center);