6 overrides of CellTemplate
System.Windows.Forms (6)
winforms\Managed\System\WinForms\DataGridViewButtonColumn.cs (1)
42public override DataGridViewCell CellTemplate
winforms\Managed\System\WinForms\DataGridViewCheckBoxColumn.cs (1)
51public override DataGridViewCell CellTemplate
winforms\Managed\System\WinForms\DataGridViewComboBoxColumn.cs (1)
77public override DataGridViewCell CellTemplate
winforms\Managed\System\WinForms\DataGridViewImageColumn.cs (1)
56public override DataGridViewCell CellTemplate
winforms\Managed\System\WinForms\DataGridViewLinkColumn.cs (1)
83public override DataGridViewCell CellTemplate
winforms\Managed\System\WinForms\DataGridViewTextBoxColumn.cs (1)
33public override DataGridViewCell CellTemplate
6 writes to CellTemplate
System.Windows.Forms (6)
winforms\Managed\System\WinForms\DataGridViewButtonColumn.cs (1)
54base.CellTemplate = value;
winforms\Managed\System\WinForms\DataGridViewCheckBoxColumn.cs (1)
63base.CellTemplate = value;
winforms\Managed\System\WinForms\DataGridViewComboBoxColumn.cs (1)
90base.CellTemplate = value;
winforms\Managed\System\WinForms\DataGridViewImageColumn.cs (1)
68base.CellTemplate = value;
winforms\Managed\System\WinForms\DataGridViewLinkColumn.cs (1)
95base.CellTemplate = value;
winforms\Managed\System\WinForms\DataGridViewTextBoxColumn.cs (1)
45base.CellTemplate = value;
19 references to CellTemplate
System.Windows.Forms (19)
winforms\Managed\System\WinForms\DataGridViewButtonColumn.cs (1)
46return base.CellTemplate;
winforms\Managed\System\WinForms\DataGridViewCheckBoxColumn.cs (1)
55return base.CellTemplate;
winforms\Managed\System\WinForms\DataGridViewColumn.cs (2)
1123if (dataGridViewColumn.CellTemplate != null) 1125dataGridViewColumn.cellTemplate = (DataGridViewCell)this.CellTemplate.Clone();
winforms\Managed\System\WinForms\DataGridViewComboBoxColumn.cs (2)
29((DataGridViewComboBoxCell)base.CellTemplate).TemplateComboBoxColumn = this; 81return base.CellTemplate;
winforms\Managed\System\WinForms\DataGridViewImageColumn.cs (1)
60return base.CellTemplate;
winforms\Managed\System\WinForms\DataGridViewLinkColumn.cs (1)
87return base.CellTemplate;
winforms\Managed\System\WinForms\DataGridViewMethods.cs (8)
4170if (this.Columns[columnIndex].CellTemplate == null) 4174DataGridViewCell dgvcNew = (DataGridViewCell) this.Columns[columnIndex].CellTemplate.Clone(); 10950if (dataGridViewColumn.CellTemplate.DefaultNewRowValue != null && this.newRowIndex != -1) 10965DataGridViewCell dataGridViewCellNew = (DataGridViewCell)dataGridViewColumn.CellTemplate.Clone(); 11085if (dataGridViewColumn.CellTemplate.DefaultNewRowValue != null && this.newRowIndex != -1) 11107DataGridViewCell dataGridViewCellNew = (DataGridViewCell)dataGridViewColumn.CellTemplate.Clone(); 15914if (dataGridViewColumn.CellTemplate.DefaultNewRowValue != null && this.newRowIndex != -1) 15929DataGridViewCell dataGridViewCellNew = (DataGridViewCell)dataGridViewColumn.CellTemplate.Clone();
winforms\Managed\System\WinForms\DataGridViewRow.cs (2)
1202if (dataGridViewColumn.CellTemplate == null) 1206DataGridViewCell dgvcNew = (DataGridViewCell)dataGridViewColumn.CellTemplate.Clone();
winforms\Managed\System\WinForms\DataGridViewTextBoxColumn.cs (1)
37return base.CellTemplate;