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