Base:
property
BackgroundImageLayout
System.Windows.Forms.Control.BackgroundImageLayout
7 writes to BackgroundImageLayout
System.Windows.Forms.Tests (7)
System\Windows\Forms\ListBoxTests.cs (7)
537
BackgroundImageLayout
= value
543
control.
BackgroundImageLayout
= value;
562
control.
BackgroundImageLayout
= ImageLayout.Center;
567
control.
BackgroundImageLayout
= ImageLayout.Center;
572
control.
BackgroundImageLayout
= ImageLayout.Stretch;
578
control.
BackgroundImageLayout
= ImageLayout.Center;
588
Assert.Throws<InvalidEnumArgumentException>("value", () => control.
BackgroundImageLayout
= value);
7 references to BackgroundImageLayout
System.Windows.Forms.Tests (7)
System\Windows\Forms\ListBoxTests.cs (7)
29
Assert.Equal(ImageLayout.Tile, control.
BackgroundImageLayout
);
539
Assert.Equal(value, control.
BackgroundImageLayout
);
544
Assert.Equal(value, control.
BackgroundImageLayout
);
563
Assert.Equal(ImageLayout.Center, control.
BackgroundImageLayout
);
568
Assert.Equal(ImageLayout.Center, control.
BackgroundImageLayout
);
573
Assert.Equal(ImageLayout.Stretch, control.
BackgroundImageLayout
);
579
Assert.Equal(ImageLayout.Center, control.
BackgroundImageLayout
);