Base:
property
BackgroundImageLayout
System.Windows.Forms.Control.BackgroundImageLayout
8 writes to BackgroundImageLayout
System.Windows.Forms.Tests (8)
System\Windows\Forms\LabelTests.cs (8)
564
label.
BackgroundImageLayout
= ImageLayout.Center;
568
label.
BackgroundImageLayout
= ImageLayout.Center;
572
label.
BackgroundImageLayout
= ImageLayout.Stretch;
593
label.
BackgroundImageLayout
= label.BackgroundImageLayout;
596
label.
BackgroundImageLayout
= ImageLayout.Center;
599
label.
BackgroundImageLayout
= label.BackgroundImageLayout;
602
label.
BackgroundImageLayout
= ImageLayout.Stretch;
606
label.
BackgroundImageLayout
= ImageLayout.Zoom;
7 references to BackgroundImageLayout
System.Windows.Forms.Tests (7)
System\Windows\Forms\LabelTests.cs (7)
28
Assert.Equal(ImageLayout.Tile, control.
BackgroundImageLayout
);
561
Assert.Equal(ImageLayout.Tile, label.
BackgroundImageLayout
); // Default value
565
Assert.Equal(ImageLayout.Center, label.
BackgroundImageLayout
);
569
Assert.Equal(ImageLayout.Center, label.
BackgroundImageLayout
);
573
Assert.Equal(ImageLayout.Stretch, label.
BackgroundImageLayout
);
593
label.BackgroundImageLayout = label.
BackgroundImageLayout
;
599
label.BackgroundImageLayout = label.
BackgroundImageLayout
;