Base:
property
BackgroundImageLayout
System.Windows.Forms.Control.BackgroundImageLayout
8 writes to BackgroundImageLayout
System.Windows.Forms.Tests (7)
System\Windows\Forms\PropertyGridTests.cs (7)
476
BackgroundImageLayout
= value
482
control.
BackgroundImageLayout
= value;
503
control.
BackgroundImageLayout
= ImageLayout.Center;
508
control.
BackgroundImageLayout
= ImageLayout.Center;
513
control.
BackgroundImageLayout
= ImageLayout.Stretch;
519
control.
BackgroundImageLayout
= ImageLayout.Center;
529
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)
44
Assert.Equal(ImageLayout.Tile, control.
BackgroundImageLayout
);
478
Assert.Equal(value, control.
BackgroundImageLayout
);
483
Assert.Equal(value, control.
BackgroundImageLayout
);
504
Assert.Equal(ImageLayout.Center, control.
BackgroundImageLayout
);
509
Assert.Equal(ImageLayout.Center, control.
BackgroundImageLayout
);
514
Assert.Equal(ImageLayout.Stretch, control.
BackgroundImageLayout
);
520
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);