Base:
property
BackgroundImageLayout
System.Windows.Forms.Control.BackgroundImageLayout
7 writes to BackgroundImageLayout
System.Windows.Forms.Tests (7)
System\Windows\Forms\ScrollBarTests.cs (7)
311
BackgroundImageLayout
= value
317
control.
BackgroundImageLayout
= value;
336
control.
BackgroundImageLayout
= ImageLayout.Center;
341
control.
BackgroundImageLayout
= ImageLayout.Center;
346
control.
BackgroundImageLayout
= ImageLayout.Stretch;
352
control.
BackgroundImageLayout
= ImageLayout.Center;
362
Assert.Throws<InvalidEnumArgumentException>("value", () => control.
BackgroundImageLayout
= value);
9 references to BackgroundImageLayout
System.Windows.Forms.Tests (9)
System\Windows\Forms\HScrollBarTests.cs (1)
28
Assert.Equal(ImageLayout.Tile, control.
BackgroundImageLayout
);
System\Windows\Forms\ScrollBarTests.cs (7)
29
Assert.Equal(ImageLayout.Tile, control.
BackgroundImageLayout
);
313
Assert.Equal(value, control.
BackgroundImageLayout
);
318
Assert.Equal(value, control.
BackgroundImageLayout
);
337
Assert.Equal(ImageLayout.Center, control.
BackgroundImageLayout
);
342
Assert.Equal(ImageLayout.Center, control.
BackgroundImageLayout
);
347
Assert.Equal(ImageLayout.Stretch, control.
BackgroundImageLayout
);
353
Assert.Equal(ImageLayout.Center, control.
BackgroundImageLayout
);
System\Windows\Forms\VScrollBarTests.cs (1)
27
Assert.Equal(ImageLayout.Tile, control.
BackgroundImageLayout
);