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