1 type derived from DataGridViewLinkCell
System.Windows.Forms.Tests (1)
System\Windows\Forms\AccessibleObjects\DataGridViewLinkCellAccessibleObjectTests.cs (1)
10
public class DataGridViewLinkCellAccessibleObjectTests :
DataGridViewLinkCell
5 instantiations of DataGridViewLinkCell
System.Windows.Forms (2)
System\Windows\Forms\Controls\DataGridView\DataGridViewLinkCell.cs (1)
369
dataGridViewCell = new
DataGridViewLinkCell
();
System\Windows\Forms\Controls\DataGridView\DataGridViewLinkColumn.cs (1)
18
: base(new
DataGridViewLinkCell
())
System.Windows.Forms.Tests (3)
System\Windows\Forms\AccessibleObjects\DataGridViewLinkCellAccessibleObjectTests.cs (1)
65
using DataGridViewLinkCell cell =
new
();
System\Windows\Forms\DataGridViewLinkCellTests.cs (2)
13
public DataGridViewLinkCellTests() => _cell =
new
();
86
using DataGridViewLinkCell cell =
new
();
34 references to DataGridViewLinkCell
System.Windows.Forms (16)
System\Windows\Forms\Controls\DataGridView\DataGridViewCell.DataGridViewCellAccessibleObject.cs (1)
379
or
DataGridViewLinkCell
System\Windows\Forms\Controls\DataGridView\DataGridViewElement.cs (1)
31
GetType() == typeof(
DataGridViewLinkCell
) || GetType() == typeof(DataGridViewTextBoxCell))
System\Windows\Forms\Controls\DataGridView\DataGridViewLinkCell.cs (3)
18
private static readonly Type s_cellType = typeof(
DataGridViewLinkCell
);
364
DataGridViewLinkCell
dataGridViewCell;
373
dataGridViewCell = (
DataGridViewLinkCell
)Activator.CreateInstance(thisType)!;
System\Windows\Forms\Controls\DataGridView\DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject.cs (1)
26
if (Owner is not
DataGridViewLinkCell
dataGridViewCell)
System\Windows\Forms\Controls\DataGridView\DataGridViewLinkColumn.cs (10)
22
private
DataGridViewLinkCell
? LinkCellTemplate => (
DataGridViewLinkCell
?)CellTemplate;
56
if (dataGridViewRow.Cells[Index] is
DataGridViewLinkCell
dataGridViewCell)
83
if (value is not null and not
DataGridViewLinkCell
)
125
if (dataGridViewRow.Cells[Index] is
DataGridViewLinkCell
dataGridViewCell)
167
if (dataGridViewRow.Cells[Index] is
DataGridViewLinkCell
dataGridViewCell)
217
if (dataGridViewRow.Cells[Index] is
DataGridViewLinkCell
dataGridViewCell && dataGridViewCell.UseColumnTextForLinkValue)
262
if (dataGridViewRow.Cells[Index] is
DataGridViewLinkCell
dataGridViewCell)
305
if (dataGridViewRow.Cells[Index] is
DataGridViewLinkCell
dataGridViewCell)
347
if (dataGridViewRow.Cells[Index] is
DataGridViewLinkCell
dataGridViewCell)
System.Windows.Forms.Tests (18)
System\Windows\Forms\AccessibleObjects\DataGridViewLinkCellAccessibleObjectTests.cs (1)
65
using
DataGridViewLinkCell
cell = new();
System\Windows\Forms\DataGridViewElementTests.cs (1)
376
type == typeof(DataGridViewImageCell) || type == typeof(
DataGridViewLinkCell
) || type == typeof(DataGridViewTextBoxCell),
System\Windows\Forms\DataGridViewLinkCellTests.cs (10)
11
private readonly
DataGridViewLinkCell
_cell;
28
_cell.Should().BeOfType<
DataGridViewLinkCell
>();
86
using
DataGridViewLinkCell
cell = new();
232
DataGridViewLinkCell
clonedLinkCell = (
DataGridViewLinkCell
)_cell.Clone();
248
DataGridViewLinkCell
clonedLinkCell = (
DataGridViewLinkCell
)_cell.Clone();
250
clonedLinkCell.Should().BeOfType<
DataGridViewLinkCell
>();
258
DataGridViewLinkCell
clonedLinkCell = (
DataGridViewLinkCell
)_cell.Clone();
System\Windows\Forms\DataGridViewLinkColumnTests.cs (6)
59
((
DataGridViewLinkCell
)row.Cells[_column.Index]).ActiveLinkColor.Should().Be(color);
113
((
DataGridViewLinkCell
)row.Cells[_column.Index]).LinkBehavior.Should().Be(behavior);
151
((
DataGridViewLinkCell
)row.Cells[_column.Index]).LinkColor.Should().Be(color);
212
((
DataGridViewLinkCell
)row.Cells[_column.Index]).TrackVisitedState.Should().Be(trackVisitedState);
250
((
DataGridViewLinkCell
)row.Cells[_column.Index]).UseColumnTextForLinkValue.Should().Be(useColumnTextForLinkValue);
288
((
DataGridViewLinkCell
)row.Cells[_column.Index]).VisitedLinkColor.Should().Be(color);