Base:
property
BackgroundImageLayout
System.Windows.Forms.Control.BackgroundImageLayout
7 writes to BackgroundImageLayout
System.Windows.Forms.Tests (7)
System\Windows\Forms\ComboBoxTests.cs (7)
562
BackgroundImageLayout
= value
568
control.
BackgroundImageLayout
= value;
587
control.
BackgroundImageLayout
= ImageLayout.Center;
592
control.
BackgroundImageLayout
= ImageLayout.Center;
597
control.
BackgroundImageLayout
= ImageLayout.Stretch;
603
control.
BackgroundImageLayout
= ImageLayout.Center;
613
Assert.Throws<InvalidEnumArgumentException>("value", () => control.
BackgroundImageLayout
= value);
7 references to BackgroundImageLayout
System.Windows.Forms.Tests (7)
System\Windows\Forms\ComboBoxTests.cs (7)
36
Assert.Equal(ImageLayout.Tile, control.
BackgroundImageLayout
);
564
Assert.Equal(value, control.
BackgroundImageLayout
);
569
Assert.Equal(value, control.
BackgroundImageLayout
);
588
Assert.Equal(ImageLayout.Center, control.
BackgroundImageLayout
);
593
Assert.Equal(ImageLayout.Center, control.
BackgroundImageLayout
);
598
Assert.Equal(ImageLayout.Stretch, control.
BackgroundImageLayout
);
604
Assert.Equal(ImageLayout.Center, control.
BackgroundImageLayout
);