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