1 type derived from DataGridViewTextBoxCell
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\DataGridViewCellStyleBuilder.cs (1)
336
private class DialogDataGridViewCell :
DataGridViewTextBoxCell
3 instantiations of DataGridViewTextBoxCell
PresentationUI (1)
MS\Internal\Documents\RMPublishingDialog.RightsTable.cs (1)
380
DataGridViewCell nameCell = new
DataGridViewTextBoxCell
System.Windows.Forms (2)
System\Windows\Forms\Controls\DataGridView\DataGridViewTextBoxCell.cs (1)
106
dataGridViewCell = new
DataGridViewTextBoxCell
();
System\Windows\Forms\Controls\DataGridView\DataGridViewTextBoxColumn.cs (1)
14
public DataGridViewTextBoxColumn() : base(new
DataGridViewTextBoxCell
())
9 references to DataGridViewTextBoxCell
System.Windows.Forms (9)
System\Windows\Forms\Controls\DataGridView\DataGridViewCell.DataGridViewCellAccessibleObject.cs (1)
380
or
DataGridViewTextBoxCell
)
System\Windows\Forms\Controls\DataGridView\DataGridViewElement.cs (1)
31
GetType() == typeof(DataGridViewLinkCell) || GetType() == typeof(
DataGridViewTextBoxCell
))
System\Windows\Forms\Controls\DataGridView\DataGridViewTextBoxCell.cs (3)
34
private static readonly Type s_cellType = typeof(
DataGridViewTextBoxCell
);
102
DataGridViewTextBoxCell
dataGridViewCell;
110
dataGridViewCell = (
DataGridViewTextBoxCell
)Activator.CreateInstance(thisType)!;
System\Windows\Forms\Controls\DataGridView\DataGridViewTextBoxColumn.cs (4)
26
if (value is not null and not
DataGridViewTextBoxCell
)
68
if (dataGridViewRow.Cells[Index] is
DataGridViewTextBoxCell
dataGridViewCell)
83
private
DataGridViewTextBoxCell
? TextBoxCellTemplate => (
DataGridViewTextBoxCell
?)CellTemplate;