11 writes to TrackVisitedState
System.Windows.Forms.Tests (11)
System\Windows\Forms\DataGridViewLinkCellTests.cs (11)
174_cell.TrackVisitedState = false; 177_cell.TrackVisitedState = true; 184_cell.TrackVisitedState = true; 227_cell.TrackVisitedState = false; 403_cell.TrackVisitedState = trackVisitedState; 485_cell.TrackVisitedState = false; 498_cell.TrackVisitedState = false; 522_cell.TrackVisitedState = true; 550_cell.TrackVisitedState = false; 627_cell.TrackVisitedState = true; 642_cell.TrackVisitedState = false;
15 references to TrackVisitedState
System.Windows.Forms (7)
System\Windows\Forms\Controls\DataGridView\DataGridViewLinkCell.cs (6)
244if (value == TrackVisitedState) 400dataGridViewCell.TrackVisitedStateInternal = TrackVisitedState; 684return TrackVisitedState && !LinkVisited; 719TrackVisitedState && LinkBoundsContainPoint(e.X, e.Y, e.RowIndex); 736if (TrackVisitedState) 826if (LinkBoundsContainPoint(e.X, e.Y, e.RowIndex) && TrackVisitedState)
System\Windows\Forms\Controls\DataGridView\DataGridViewLinkColumn.cs (1)
242return LinkCellTemplate.TrackVisitedState;
System.Windows.Forms.Tests (8)
System\Windows\Forms\DataGridViewLinkCellTests.cs (7)
169_cell.TrackVisitedState.Should().BeTrue(); 175_cell.TrackVisitedState.Should().BeFalse(); 178_cell.TrackVisitedState.Should().BeTrue(); 185_cell.TrackVisitedState.Should().BeTrue(); 238clonedLinkCell.TrackVisitedState.Should().Be(_cell.TrackVisitedState); 262clonedLinkCell.TrackVisitedState.Should().BeTrue();
System\Windows\Forms\DataGridViewLinkColumnTests.cs (1)
212((DataGridViewLinkCell)row.Cells[_column.Index]).TrackVisitedState.Should().Be(trackVisitedState);