Base:
property
CellTemplate
System.Windows.Forms.DataGridViewColumn.CellTemplate
3 writes to CellTemplate
System.Windows.Forms.Tests (3)
System\Windows\Forms\DataGridViewTextBoxColumnTests.cs (3)
37_column.CellTemplate = cell; 47Action action = () => _column.CellTemplate = cell; 102_column.CellTemplate = null;
4 references to CellTemplate
System.Windows.Forms (1)
System\Windows\Forms\Controls\DataGridView\DataGridViewTextBoxColumn.cs (1)
83private DataGridViewTextBoxCell? TextBoxCellTemplate => (DataGridViewTextBoxCell?)CellTemplate;
System.Windows.Forms.Tests (3)
System\Windows\Forms\DataGridViewTextBoxColumnTests.cs (3)
27_column.CellTemplate.Should().NotBeNull(); 28_column.CellTemplate.Should().BeOfType<DataGridViewTextBoxCell>(); 39_column.CellTemplate.Should().Be(cell);