7 writes to SelectedItemWithFocusBackColor
System.Windows.Forms.Tests (6)
System\Windows\Forms\PropertyGridTests.cs (6)
2404SelectedItemWithFocusBackColor = value 2410control.SelectedItemWithFocusBackColor = value; 2428control.SelectedItemWithFocusBackColor = value; 2436control.SelectedItemWithFocusBackColor = value; 2451control.SelectedItemWithFocusBackColor = Color.Red; 2467control.SelectedItemWithFocusBackColor = Color.Red;
System.Windows.Forms.UI.IntegrationTests (1)
PropertyGridTests.cs (1)
127_propertyGrid.SelectedItemWithFocusBackColor = Color.Green;
14 references to SelectedItemWithFocusBackColor
System.Windows.Forms (1)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (1)
1310public Color SelectedItemWithFocusBackColor => OwnerGrid.SelectedItemWithFocusBackColor;
System.Windows.Forms.Tests (11)
System\Windows\Forms\PropertyGridTests.cs (11)
140Assert.Equal(SystemColors.Highlight, control.SelectedItemWithFocusBackColor); 2406Assert.Equal(value, control.SelectedItemWithFocusBackColor); 2411Assert.Equal(value, control.SelectedItemWithFocusBackColor); 2429Assert.Equal(value, control.SelectedItemWithFocusBackColor); 2437Assert.Equal(value, control.SelectedItemWithFocusBackColor); 2447PropertyDescriptor property = TypeDescriptor.GetProperties(typeof(PropertyGrid))[nameof(PropertyGrid.SelectedItemWithFocusBackColor)]; 2452Assert.Equal(Color.Red, control.SelectedItemWithFocusBackColor); 2456Assert.Equal(SystemColors.Highlight, control.SelectedItemWithFocusBackColor); 2463PropertyDescriptor property = TypeDescriptor.GetProperties(typeof(PropertyGrid))[nameof(PropertyGrid.SelectedItemWithFocusBackColor)]; 2468Assert.Equal(Color.Red, control.SelectedItemWithFocusBackColor); 2472Assert.Equal(SystemColors.Highlight, control.SelectedItemWithFocusBackColor);
System.Windows.Forms.UI.IntegrationTests (2)
PropertyGridTests.cs (2)
125_propertyGrid.SelectedItemWithFocusBackColor.Should().Be(SystemColors.Highlight); 128_propertyGrid.SelectedItemWithFocusBackColor.Should().Be(Color.Green);