Base:
property
BackgroundImageLayout
System.Windows.Forms.Control.BackgroundImageLayout
7 writes to BackgroundImageLayout
System.Windows.Forms.Tests (7)
System\Windows\Forms\ScrollBarTests.cs (7)
309
BackgroundImageLayout
= value
315
control.
BackgroundImageLayout
= value;
334
control.
BackgroundImageLayout
= ImageLayout.Center;
339
control.
BackgroundImageLayout
= ImageLayout.Center;
344
control.
BackgroundImageLayout
= ImageLayout.Stretch;
350
control.
BackgroundImageLayout
= ImageLayout.Center;
360
Assert.Throws<InvalidEnumArgumentException>("value", () => control.
BackgroundImageLayout
= value);
9 references to BackgroundImageLayout
System.Windows.Forms.Tests (9)
System\Windows\Forms\HScrollBarTests.cs (1)
26
Assert.Equal(ImageLayout.Tile, control.
BackgroundImageLayout
);
System\Windows\Forms\ScrollBarTests.cs (7)
27
Assert.Equal(ImageLayout.Tile, control.
BackgroundImageLayout
);
311
Assert.Equal(value, control.
BackgroundImageLayout
);
316
Assert.Equal(value, control.
BackgroundImageLayout
);
335
Assert.Equal(ImageLayout.Center, control.
BackgroundImageLayout
);
340
Assert.Equal(ImageLayout.Center, control.
BackgroundImageLayout
);
345
Assert.Equal(ImageLayout.Stretch, control.
BackgroundImageLayout
);
351
Assert.Equal(ImageLayout.Center, control.
BackgroundImageLayout
);
System\Windows\Forms\VScrollBarTests.cs (1)
25
Assert.Equal(ImageLayout.Tile, control.
BackgroundImageLayout
);