10 writes to CommandsBorderColor
System.Windows.Forms.Tests (6)
System\Windows\Forms\PropertyGridTests.cs (6)
1035CommandsBorderColor = value 1041control.CommandsBorderColor = value; 1059control.CommandsBorderColor = value; 1067control.CommandsBorderColor = value; 1082control.CommandsBorderColor = Color.Red; 1098control.CommandsBorderColor = Color.Red;
System.Windows.Forms.UI.IntegrationTests (1)
PropertyGridTests.cs (1)
109_propertyGrid.CommandsBorderColor = Color.Red;
WinFormsControlsTest (3)
Dialogs.Designer.cs (1)
52this.propertyGrid1.CommandsBorderColor = System.Drawing.SystemColors.Control;
MessageBoxes.Designer.cs (1)
40this.propertyGrid1.CommandsBorderColor = System.Drawing.SystemColors.Control;
PropertyGrid.Designer.cs (1)
39this.propertyGrid1.CommandsBorderColor = System.Drawing.SystemColors.Control;
13 references to CommandsBorderColor
System.Windows.Forms.Tests (11)
System\Windows\Forms\PropertyGridTests.cs (11)
63Assert.Equal(SystemColors.ControlDark, control.CommandsBorderColor); 1037Assert.Equal(value, control.CommandsBorderColor); 1042Assert.Equal(value, control.CommandsBorderColor); 1060Assert.Equal(value, control.CommandsBorderColor); 1068Assert.Equal(value, control.CommandsBorderColor); 1078PropertyDescriptor property = TypeDescriptor.GetProperties(typeof(PropertyGrid))[nameof(PropertyGrid.CommandsBorderColor)]; 1083Assert.Equal(Color.Red, control.CommandsBorderColor); 1087Assert.Equal(SystemColors.ControlDark, control.CommandsBorderColor); 1094PropertyDescriptor property = TypeDescriptor.GetProperties(typeof(PropertyGrid))[nameof(PropertyGrid.CommandsBorderColor)]; 1099Assert.Equal(Color.Red, control.CommandsBorderColor); 1103Assert.Equal(SystemColors.ControlDark, control.CommandsBorderColor);
System.Windows.Forms.UI.IntegrationTests (2)
PropertyGridTests.cs (2)
107_propertyGrid.CommandsBorderColor.Should().Be(SystemColors.ControlDark); 110_propertyGrid.CommandsBorderColor.Should().Be(Color.Red);