Base:
property
BackgroundImageLayout
System.Windows.Forms.Control.BackgroundImageLayout
7 writes to BackgroundImageLayout
System.Windows.Forms.Tests (7)
System\Windows\Forms\ProgressBarTests.cs (7)
283
BackgroundImageLayout
= value
290
control.
BackgroundImageLayout
= value;
311
control.
BackgroundImageLayout
= ImageLayout.Center;
316
control.
BackgroundImageLayout
= ImageLayout.Center;
321
control.
BackgroundImageLayout
= ImageLayout.Stretch;
327
control.
BackgroundImageLayout
= ImageLayout.Center;
337
Assert.Throws<InvalidEnumArgumentException>("value", () => control.
BackgroundImageLayout
= value);
7 references to BackgroundImageLayout
System.Windows.Forms.Tests (7)
System\Windows\Forms\ProgressBarTests.cs (7)
30
Assert.Equal(ImageLayout.Tile, control.
BackgroundImageLayout
);
285
Assert.Equal(value, control.
BackgroundImageLayout
);
291
Assert.Equal(value, control.
BackgroundImageLayout
);
312
Assert.Equal(ImageLayout.Center, control.
BackgroundImageLayout
);
317
Assert.Equal(ImageLayout.Center, control.
BackgroundImageLayout
);
322
Assert.Equal(ImageLayout.Stretch, control.
BackgroundImageLayout
);
328
Assert.Equal(ImageLayout.Center, control.
BackgroundImageLayout
);