1 type derived from DataGridViewCheckBoxCell
PresentationUI (1)
MS\Internal\Documents\RMPublishingDialog.RightsTable.cs (1)
931
public class DataGridViewDisableCheckBoxCell :
DataGridViewCheckBoxCell
2 instantiations of DataGridViewCheckBoxCell
System.Windows.Forms (2)
System\Windows\Forms\Controls\DataGridView\DataGridViewCheckBoxCell.cs (1)
413
dataGridViewCell = new
DataGridViewCheckBoxCell
();
System\Windows\Forms\Controls\DataGridView\DataGridViewCheckBoxColumn.cs (1)
18
: base(new
DataGridViewCheckBoxCell
(threeState))
19 references to DataGridViewCheckBoxCell
System.Windows.Forms (19)
System\Windows\Forms\Controls\DataGridView\DataGridViewCell.DataGridViewCellAccessibleObject.cs (1)
376
or
DataGridViewCheckBoxCell
System\Windows\Forms\Controls\DataGridView\DataGridViewCheckBoxCell.cs (4)
37
private static readonly Type s_cellType = typeof(
DataGridViewCheckBoxCell
);
409
DataGridViewCheckBoxCell
dataGridViewCell;
417
dataGridViewCell = (
DataGridViewCheckBoxCell
)Activator.CreateInstance(thisType)!;
1672
DataGridViewCheckBoxCell
editingCell = this;
System\Windows\Forms\Controls\DataGridView\DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject.cs (4)
84
if (Owner is not
DataGridViewCheckBoxCell
dataGridViewCell)
117
if (Owner is
DataGridViewCheckBoxCell
checkBoxCell)
153
if (Owner is not
DataGridViewCheckBoxCell
)
158
return ((Owner as
DataGridViewCheckBoxCell
)?.CheckState) switch
System\Windows\Forms\Controls\DataGridView\DataGridViewCheckBoxColumn.cs (9)
36
if (value is not null and not
DataGridViewCheckBoxCell
)
45
private
DataGridViewCheckBoxCell
? CheckBoxCellTemplate => (
DataGridViewCheckBoxCell
?)CellTemplate;
91
if (dataGridViewRow.Cells[Index] is
DataGridViewCheckBoxCell
dataGridViewCell)
134
if (dataGridViewRow.Cells[Index] is
DataGridViewCheckBoxCell
dataGridViewCell)
178
if (dataGridViewRow.Cells[Index] is
DataGridViewCheckBoxCell
dataGridViewCell)
218
if (dataGridViewRow.Cells[Index] is
DataGridViewCheckBoxCell
dataGridViewCell)
272
if (dataGridViewRow.Cells[Index] is
DataGridViewCheckBoxCell
dataGridViewCell)
285
if (CellTemplate is not
DataGridViewCheckBoxCell
templateCell)
System\Windows\Forms\Controls\DataGridView\DataGridViewElement.cs (1)
27
GetType() == typeof(DataGridViewButtonCell) || GetType() == typeof(
DataGridViewCheckBoxCell
) ||