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