Base:
property
BackgroundImageLayout
System.Windows.Forms.Control.BackgroundImageLayout
7 writes to BackgroundImageLayout
System.Windows.Forms.Tests (7)
System\Windows\Forms\TabControlTests.cs (7)
681
BackgroundImageLayout
= value
688
control.
BackgroundImageLayout
= value;
709
control.
BackgroundImageLayout
= ImageLayout.Center;
714
control.
BackgroundImageLayout
= ImageLayout.Center;
719
control.
BackgroundImageLayout
= ImageLayout.Stretch;
725
control.
BackgroundImageLayout
= ImageLayout.Center;
735
Assert.Throws<InvalidEnumArgumentException>("value", () => control.
BackgroundImageLayout
= value);
7 references to BackgroundImageLayout
System.Windows.Forms.Tests (7)
System\Windows\Forms\TabControlTests.cs (7)
30
Assert.Equal(ImageLayout.Tile, control.
BackgroundImageLayout
);
683
Assert.Equal(value, control.
BackgroundImageLayout
);
689
Assert.Equal(value, control.
BackgroundImageLayout
);
710
Assert.Equal(ImageLayout.Center, control.
BackgroundImageLayout
);
715
Assert.Equal(ImageLayout.Center, control.
BackgroundImageLayout
);
720
Assert.Equal(ImageLayout.Stretch, control.
BackgroundImageLayout
);
726
Assert.Equal(ImageLayout.Center, control.
BackgroundImageLayout
);