2 instantiations of DataGridViewCheckBoxCell
System.Windows.Forms (2)
winforms\Managed\System\WinForms\DataGridViewCheckBoxCell.cs (1)
489dataGridViewCell = new DataGridViewCheckBoxCell();
winforms\Managed\System\WinForms\DataGridViewCheckBoxColumn.cs (1)
31: base(new DataGridViewCheckBoxCell(threeState))
27 references to DataGridViewCheckBoxCell
System.Windows.Forms (27)
winforms\Managed\System\WinForms\DataGridViewCell.cs (1)
5165this.owner is DataGridViewCheckBoxCell ||
winforms\Managed\System\WinForms\DataGridViewCheckBoxCell.cs (11)
53private static Type cellType = typeof(DataGridViewCheckBoxCell); 485DataGridViewCheckBoxCell dataGridViewCell; 495dataGridViewCell = (DataGridViewCheckBoxCell)System.Activator.CreateInstance(thisType); 1815if (((DataGridViewCheckBoxCell)Owner).EditedFormattedValue is CheckState) 1817CheckState state = (CheckState)(((DataGridViewCheckBoxCell)Owner).EditedFormattedValue); 1826else if (((DataGridViewCheckBoxCell)Owner).EditedFormattedValue is Boolean) 1828Boolean state = (Boolean)(((DataGridViewCheckBoxCell)Owner).EditedFormattedValue); 1880DataGridViewCheckBoxCell dataGridViewCell = (DataGridViewCheckBoxCell) this.Owner; 1905DataGridViewCheckBoxCell checkBoxCell = Owner as DataGridViewCheckBoxCell;
winforms\Managed\System\WinForms\DataGridViewCheckBoxColumn.cs (15)
59if (value != null && !(value is System.Windows.Forms.DataGridViewCheckBoxCell)) 67private DataGridViewCheckBoxCell CheckBoxCellTemplate 71return (DataGridViewCheckBoxCell) this.CellTemplate; 122DataGridViewCheckBoxCell dataGridViewCell = dataGridViewRow.Cells[this.Index] as DataGridViewCheckBoxCell; 162DataGridViewCheckBoxCell dataGridViewCell = dataGridViewRow.Cells[this.Index] as DataGridViewCheckBoxCell; 203DataGridViewCheckBoxCell dataGridViewCell = dataGridViewRow.Cells[this.Index] as DataGridViewCheckBoxCell; 246DataGridViewCheckBoxCell dataGridViewCell = dataGridViewRow.Cells[this.Index] as DataGridViewCheckBoxCell; 300DataGridViewCheckBoxCell dataGridViewCell = dataGridViewRow.Cells[this.Index] as DataGridViewCheckBoxCell; 315DataGridViewCheckBoxCell templateCell = this.CellTemplate as DataGridViewCheckBoxCell;