Base:
property
BackgroundImageLayout
System.Windows.Forms.Control.BackgroundImageLayout
7 writes to BackgroundImageLayout
System.Windows.Forms.Tests (7)
System\Windows\Forms\ProgressBarTests.cs (7)
281
BackgroundImageLayout
= value
288
control.
BackgroundImageLayout
= value;
309
control.
BackgroundImageLayout
= ImageLayout.Center;
314
control.
BackgroundImageLayout
= ImageLayout.Center;
319
control.
BackgroundImageLayout
= ImageLayout.Stretch;
325
control.
BackgroundImageLayout
= ImageLayout.Center;
335
Assert.Throws<InvalidEnumArgumentException>("value", () => control.
BackgroundImageLayout
= value);
7 references to BackgroundImageLayout
System.Windows.Forms.Tests (7)
System\Windows\Forms\ProgressBarTests.cs (7)
28
Assert.Equal(ImageLayout.Tile, control.
BackgroundImageLayout
);
283
Assert.Equal(value, control.
BackgroundImageLayout
);
289
Assert.Equal(value, control.
BackgroundImageLayout
);
310
Assert.Equal(ImageLayout.Center, control.
BackgroundImageLayout
);
315
Assert.Equal(ImageLayout.Center, control.
BackgroundImageLayout
);
320
Assert.Equal(ImageLayout.Stretch, control.
BackgroundImageLayout
);
326
Assert.Equal(ImageLayout.Center, control.
BackgroundImageLayout
);