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