Base:
property
BackgroundImageLayout
System.Windows.Forms.Control.BackgroundImageLayout
7 writes to BackgroundImageLayout
System.Windows.Forms.Tests (7)
System\Windows\Forms\TreeViewTests.cs (7)
856
BackgroundImageLayout
= value
862
control.
BackgroundImageLayout
= value;
881
control.
BackgroundImageLayout
= ImageLayout.Center;
886
control.
BackgroundImageLayout
= ImageLayout.Center;
891
control.
BackgroundImageLayout
= ImageLayout.Stretch;
897
control.
BackgroundImageLayout
= ImageLayout.Center;
907
Assert.Throws<InvalidEnumArgumentException>("value", () => control.
BackgroundImageLayout
= value);
7 references to BackgroundImageLayout
System.Windows.Forms.Tests (7)
System\Windows\Forms\TreeViewTests.cs (7)
29
Assert.Equal(ImageLayout.Tile, control.
BackgroundImageLayout
);
858
Assert.Equal(value, control.
BackgroundImageLayout
);
863
Assert.Equal(value, control.
BackgroundImageLayout
);
882
Assert.Equal(ImageLayout.Center, control.
BackgroundImageLayout
);
887
Assert.Equal(ImageLayout.Center, control.
BackgroundImageLayout
);
892
Assert.Equal(ImageLayout.Stretch, control.
BackgroundImageLayout
);
898
Assert.Equal(ImageLayout.Center, control.
BackgroundImageLayout
);