1 type derived from DataGridViewTextBoxCell
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\DataGridViewCellStyleBuilder.cs (1)
336private class DialogDataGridViewCell : DataGridViewTextBoxCell
10 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())
System.Windows.Forms.Tests (7)
System\Windows\Forms\AccessibleObjects\DataGridViewTextBoxCell.DataGridViewTextBoxCellAccessibleObjectTests.cs (1)
15using DataGridViewTextBoxCell cell = new();
System\Windows\Forms\DataGridViewButtonColumnTests.cs (1)
160Action action = () => _column.CellTemplate = new DataGridViewTextBoxCell();
System\Windows\Forms\DataGridViewCellConverterTests.cs (2)
22using DataGridViewTextBoxCell cell = new(); 43using DataGridViewTextBoxCell cell = new();
System\Windows\Forms\DataGridViewColumnConverterTests.cs (1)
68using DataGridViewTextBoxCell cellTemplate = new();
System\Windows\Forms\DataGridViewLinkColumnTests.cs (1)
81using DataGridViewTextBoxCell cell = new();
System\Windows\Forms\DataGridViewTextBoxColumnTests.cs (1)
35using DataGridViewTextBoxCell cell = new();
19 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;
System.Windows.Forms.Tests (10)
System\Windows\Forms\AccessibleObjects\DataGridViewTextBoxCell.DataGridViewTextBoxCellAccessibleObjectTests.cs (1)
15using DataGridViewTextBoxCell cell = new();
System\Windows\Forms\DataGridViewCellConverterTests.cs (2)
22using DataGridViewTextBoxCell cell = new(); 43using DataGridViewTextBoxCell cell = new();
System\Windows\Forms\DataGridViewColumnConverterTests.cs (1)
68using DataGridViewTextBoxCell cellTemplate = new();
System\Windows\Forms\DataGridViewElementTests.cs (1)
376type == typeof(DataGridViewImageCell) || type == typeof(DataGridViewLinkCell) || type == typeof(DataGridViewTextBoxCell),
System\Windows\Forms\DataGridViewLinkColumnTests.cs (1)
81using DataGridViewTextBoxCell cell = new();
System\Windows\Forms\DataGridViewTextBoxColumnTests.cs (4)
28_column.CellTemplate.Should().BeOfType<DataGridViewTextBoxCell>(); 35using DataGridViewTextBoxCell cell = new(); 70((DataGridViewTextBoxCell)row.Cells[0]).MaxInputLength.Should().Be(100); 84((DataGridViewTextBoxCell)row.Cells[0]).MaxInputLength.Should().Be(32767);