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