Base:
property
BackgroundImageLayout
System.Windows.Forms.Control.BackgroundImageLayout
8 writes to BackgroundImageLayout
System.Windows.Forms.Tests (7)
System\Windows\Forms\PropertyGridTests.cs (7)
474BackgroundImageLayout = value 480control.BackgroundImageLayout = value; 501control.BackgroundImageLayout = ImageLayout.Center; 506control.BackgroundImageLayout = ImageLayout.Center; 511control.BackgroundImageLayout = ImageLayout.Stretch; 517control.BackgroundImageLayout = ImageLayout.Center; 527Assert.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)
42Assert.Equal(ImageLayout.Tile, control.BackgroundImageLayout); 476Assert.Equal(value, control.BackgroundImageLayout); 481Assert.Equal(value, control.BackgroundImageLayout); 502Assert.Equal(ImageLayout.Center, control.BackgroundImageLayout); 507Assert.Equal(ImageLayout.Center, control.BackgroundImageLayout); 512Assert.Equal(ImageLayout.Stretch, control.BackgroundImageLayout); 518Assert.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);