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