Base:
property
BackgroundImageLayout
System.Windows.Forms.Control.BackgroundImageLayout
7 writes to BackgroundImageLayout
System.Windows.Forms.Tests (7)
System\Windows\Forms\TreeViewTests.cs (7)
854
BackgroundImageLayout
= value
860
control.
BackgroundImageLayout
= value;
879
control.
BackgroundImageLayout
= ImageLayout.Center;
884
control.
BackgroundImageLayout
= ImageLayout.Center;
889
control.
BackgroundImageLayout
= ImageLayout.Stretch;
895
control.
BackgroundImageLayout
= ImageLayout.Center;
905
Assert.Throws<InvalidEnumArgumentException>("value", () => control.
BackgroundImageLayout
= value);
7 references to BackgroundImageLayout
System.Windows.Forms.Tests (7)
System\Windows\Forms\TreeViewTests.cs (7)
27
Assert.Equal(ImageLayout.Tile, control.
BackgroundImageLayout
);
856
Assert.Equal(value, control.
BackgroundImageLayout
);
861
Assert.Equal(value, control.
BackgroundImageLayout
);
880
Assert.Equal(ImageLayout.Center, control.
BackgroundImageLayout
);
885
Assert.Equal(ImageLayout.Center, control.
BackgroundImageLayout
);
890
Assert.Equal(ImageLayout.Stretch, control.
BackgroundImageLayout
);
896
Assert.Equal(ImageLayout.Center, control.
BackgroundImageLayout
);