Base:
property
BackgroundImageLayout
System.Windows.Forms.Control.BackgroundImageLayout
7 writes to BackgroundImageLayout
System.Windows.Forms.Tests (7)
System\Windows\Forms\TabControlTests.cs (7)
683
BackgroundImageLayout
= value
690
control.
BackgroundImageLayout
= value;
711
control.
BackgroundImageLayout
= ImageLayout.Center;
716
control.
BackgroundImageLayout
= ImageLayout.Center;
721
control.
BackgroundImageLayout
= ImageLayout.Stretch;
727
control.
BackgroundImageLayout
= ImageLayout.Center;
737
Assert.Throws<InvalidEnumArgumentException>("value", () => control.
BackgroundImageLayout
= value);
7 references to BackgroundImageLayout
System.Windows.Forms.Tests (7)
System\Windows\Forms\TabControlTests.cs (7)
32
Assert.Equal(ImageLayout.Tile, control.
BackgroundImageLayout
);
685
Assert.Equal(value, control.
BackgroundImageLayout
);
691
Assert.Equal(value, control.
BackgroundImageLayout
);
712
Assert.Equal(ImageLayout.Center, control.
BackgroundImageLayout
);
717
Assert.Equal(ImageLayout.Center, control.
BackgroundImageLayout
);
722
Assert.Equal(ImageLayout.Stretch, control.
BackgroundImageLayout
);
728
Assert.Equal(ImageLayout.Center, control.
BackgroundImageLayout
);