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