4 writes to LinkColor
System.Windows.Forms.Tests (4)
System\Windows\Forms\DataGridViewLinkCellTests.cs (4)
133_cell.LinkColor = color; 226_cell.LinkColor = Color.Green; 247_cell.LinkColor = Color.Pink; 257_cell.LinkColor = Color.Orange;
17 references to LinkColor
System.Windows.Forms (7)
System\Windows\Forms\Controls\DataGridView\DataGridViewLinkCell.cs (6)
171if (!value.Equals(LinkColor)) 193if (!value.Equals(LinkColor)) 201? !LinkColor.Equals(SystemColors.HotTrack) 202: !LinkColor.Equals(LinkUtilities.IELinkColor); 395dataGridViewCell.LinkColorInternal = LinkColor; 1014linkColor = LinkColor;
System\Windows\Forms\Controls\DataGridView\DataGridViewLinkColumn.cs (1)
147return LinkCellTemplate.LinkColor;
System.Windows.Forms.Tests (10)
System\Windows\Forms\DataGridViewLinkCellTests.cs (9)
123_cell.LinkColor.Should().Be(LinkUtilities.IELinkColor); 126_cell.LinkColor.Should().Be(SystemColors.HighlightText); 135_cell.LinkColor.Should().Be(color); 143_cell.LinkColor.Should().Be(Color.Brown); 237clonedLinkCell.LinkColor.Should().Be(_cell.LinkColor); 251clonedLinkCell.LinkColor.Should().Be(_cell.LinkColor); 260clonedLinkCell.LinkColor.Should().Be(Color.Orange);
System\Windows\Forms\DataGridViewLinkColumnTests.cs (1)
151((DataGridViewLinkCell)row.Cells[_column.Index]).LinkColor.Should().Be(color);