Base:
property
BackgroundImage
System.Windows.Forms.Control.BackgroundImage
10 writes to BackgroundImage
System.Windows.Forms (1)
System\Windows\Forms\Form.cs (1)
3964MdiClient.BackgroundImage = BackgroundImage;
System.Windows.Forms.Tests (9)
System\Windows\Forms\MdiClientTests.cs (9)
190control.BackgroundImage = image; 200BackgroundImage = value 206control.BackgroundImage = value; 226control.BackgroundImage = image1; 231control.BackgroundImage = image1; 237control.BackgroundImage = image2; 242control.BackgroundImage = null; 248control.BackgroundImage = image1; 269control.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)
27Assert.Null(control.BackgroundImage); 187Assert.Same(parentBackgroundImage, control.BackgroundImage); 191Assert.Same(image, control.BackgroundImage); 202Assert.Same(value, control.BackgroundImage); 207Assert.Same(value, control.BackgroundImage); 227Assert.Same(image1, control.BackgroundImage); 232Assert.Same(image1, control.BackgroundImage); 238Assert.Same(image2, control.BackgroundImage); 243Assert.Null(control.BackgroundImage); 249Assert.Same(image1, control.BackgroundImage);