8 writes to CommandsLinkColor
System.Windows.Forms.Tests (7)
System\Windows\Forms\PropertyGridTests.cs (7)
1283CommandsLinkColor = value 1289control.CommandsLinkColor = value; 1307control.CommandsLinkColor = value; 1315control.CommandsLinkColor = value; 1330control.CommandsLinkColor = Color.Red; 1346control.CommandsLinkColor = Color.Red; 1548CommandsLinkColor = Color.FromArgb(255, 0, 0, 3),
System.Windows.Forms.UI.IntegrationTests (1)
PropertyGridTests.cs (1)
379_propertyGrid.CommandsLinkColor = Color.Silver;
18 references to CommandsLinkColor
System.Windows.Forms.Tests (13)
System\Windows\Forms\PropertyGridTests.cs (13)
66Assert.Equal(Color.FromArgb(255, 0, 0, 255), control.CommandsLinkColor); 1285Assert.Equal(expected, control.CommandsLinkColor); 1290Assert.Equal(expected, control.CommandsLinkColor); 1308Assert.Equal(expected, control.CommandsLinkColor); 1316Assert.Equal(expected, control.CommandsLinkColor); 1326PropertyDescriptor property = TypeDescriptor.GetProperties(typeof(PropertyGrid))[nameof(PropertyGrid.CommandsLinkColor)]; 1331Assert.Equal(Color.Red, control.CommandsLinkColor); 1335Assert.Equal(Color.FromArgb(255, 0, 0, 255), control.CommandsLinkColor); 1342PropertyDescriptor property = TypeDescriptor.GetProperties(typeof(PropertyGrid))[nameof(PropertyGrid.CommandsLinkColor)]; 1347Assert.Equal(Color.Red, control.CommandsLinkColor); 1351Assert.Equal(Color.FromArgb(255, 0, 0, 255), control.CommandsLinkColor); 1558Assert.Equal(Color.FromArgb(255, 0, 0, 255), control.CommandsLinkColor); 1568Assert.Equal(Color.FromArgb(255, 0, 0, 255), control.CommandsLinkColor);
System.Windows.Forms.UI.IntegrationTests (5)
PropertyGridTests.cs (5)
374_propertyGrid.CommandsLinkColor.A.Should().Be(255); 375_propertyGrid.CommandsLinkColor.R.Should().Be(0); 376_propertyGrid.CommandsLinkColor.G.Should().Be(0); 377_propertyGrid.CommandsLinkColor.B.Should().Be(255); 380_propertyGrid.CommandsLinkColor.Should().Be(Color.Silver);