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)
244
if (value ==
TrackVisitedState
)
400
dataGridViewCell.TrackVisitedStateInternal =
TrackVisitedState
;
684
return
TrackVisitedState
&& !LinkVisited;
719
TrackVisitedState
&& LinkBoundsContainPoint(e.X, e.Y, e.RowIndex);
736
if (
TrackVisitedState
)
826
if (LinkBoundsContainPoint(e.X, e.Y, e.RowIndex) &&
TrackVisitedState
)
System\Windows\Forms\Controls\DataGridView\DataGridViewLinkColumn.cs (1)
242
return 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();
238
clonedLinkCell.
TrackVisitedState
.Should().Be(_cell.
TrackVisitedState
);
262
clonedLinkCell.
TrackVisitedState
.Should().BeTrue();
System\Windows\Forms\DataGridViewLinkColumnTests.cs (1)
212
((DataGridViewLinkCell)row.Cells[_column.Index]).
TrackVisitedState
.Should().Be(trackVisitedState);