Base:
property
BackgroundImage
System.Windows.Forms.Control.BackgroundImage
10 writes to BackgroundImage
System.Windows.Forms (1)
System\Windows\Forms\Form.cs (1)
3961MdiClient.BackgroundImage = BackgroundImage;
System.Windows.Forms.Tests (9)
System\Windows\Forms\MdiClientTests.cs (9)
192control.BackgroundImage = image; 202BackgroundImage = value 208control.BackgroundImage = value; 228control.BackgroundImage = image1; 233control.BackgroundImage = image1; 239control.BackgroundImage = image2; 244control.BackgroundImage = null; 250control.BackgroundImage = image1; 271control.BackgroundImage = image;
11 references to BackgroundImage
System.Windows.Forms (1)
System\Windows\Forms\MDI\MDIClient.cs (1)
68Image? backgroundImage = BackgroundImage;
System.Windows.Forms.Tests (10)
System\Windows\Forms\MdiClientTests.cs (10)
29Assert.Null(control.BackgroundImage); 189Assert.Same(parentBackgroundImage, control.BackgroundImage); 193Assert.Same(image, control.BackgroundImage); 204Assert.Same(value, control.BackgroundImage); 209Assert.Same(value, control.BackgroundImage); 229Assert.Same(image1, control.BackgroundImage); 234Assert.Same(image1, control.BackgroundImage); 240Assert.Same(image2, control.BackgroundImage); 245Assert.Null(control.BackgroundImage); 251Assert.Same(image1, control.BackgroundImage);