18 instantiations of CheckBox
PresentationUI (4)
MS\Internal\Documents\RMPublishingDialog.Designer.cs (2)
54this.checkBoxValidUntil = new System.Windows.Forms.CheckBox(); 57this.checkBoxPermissionsContact = new System.Windows.Forms.CheckBox();
MS\Internal\Documents\SigningDialog.Designer.cs (2)
37_addDigSigCheckBox = new System.Windows.Forms.CheckBox(); 39_addDocPropCheckBox = new System.Windows.Forms.CheckBox();
System.Windows.Forms.Design (14)
System\ComponentModel\Design\DesignerActionPanel.CheckBoxPropertyLine.cs (1)
18_checkBox = new CheckBox
System\Windows\Forms\Design\BorderSidesEditor.BorderSidesEditorUI.cs (6)
80_noneCheckBox = new CheckBox(); 81_allCheckBox = new CheckBox(); 82_topCheckBox = new CheckBox(); 83_bottomCheckBox = new CheckBox(); 84_rightCheckBox = new CheckBox(); 85_leftCheckBox = new CheckBox();
System\Windows\Forms\Design\DataGridViewAddColumnDialog.cs (3)
264_frozenCheckBox = new CheckBox(); 265_visibleCheckBox = new CheckBox(); 266_readOnlyCheckBox = new CheckBox();
System\Windows\Forms\Design\MaskDesignerDialog.cs (1)
130_checkBoxUseValidatingType = new CheckBox();
System\Windows\Forms\Design\ShortcutKeysEditor.ShortcutKeysUI.cs (3)
122_ctrlCheckBox = new CheckBox(); 123_altCheckBox = new CheckBox(); 124_shiftCheckBox = new CheckBox();
48 references to CheckBox
PresentationUI (4)
MS\Internal\Documents\RMPublishingDialog.Designer.cs (2)
419private System.Windows.Forms.CheckBox checkBoxValidUntil; 422private System.Windows.Forms.CheckBox checkBoxPermissionsContact;
MS\Internal\Documents\SigningDialog.Designer.cs (2)
294private System.Windows.Forms.CheckBox _addDigSigCheckBox; 295private System.Windows.Forms.CheckBox _addDocPropCheckBox;
System.Windows.Forms (16)
System\Windows\Forms\Controls\Buttons\ButtonInternal\CheckableControlBaseAdapter.cs (1)
45if (Control is CheckBox checkBox)
System\Windows\Forms\Controls\Buttons\ButtonInternal\CheckBoxBaseAdapter.cs (2)
26protected new CheckBox Control => (CheckBox)base.Control;
System\Windows\Forms\Controls\Buttons\CheckBox.CheckBoxAccessibleObject.cs (7)
11public class CheckBoxAccessibleObject(Control owner) : ButtonBaseAccessibleObject((owner is CheckBox) 13: throw new ArgumentException(string.Format(SR.ConstructorArgumentInvalidValueType, nameof(owner), typeof(CheckBox)))) 15public override string DefaultAction => this.TryGetOwnerAs(out CheckBox? owner) 23public override AccessibleStates State => !this.TryGetOwnerAs(out CheckBox? owner) 32internal override ToggleState ToggleState => this.TryGetOwnerAs(out CheckBox? owner) 59if (!this.IsOwnerHandleCreated(out CheckBox? owner)) 77if (this.TryGetOwnerAs(out CheckBox? owner))
System\Windows\Forms\Controls\Buttons\CheckBox.cs (1)
40/// Initializes a new instance of the <see cref="CheckBox"/> class.
System\Windows\Forms\Controls\Buttons\RadioButton.cs (1)
354/// Raises the <see cref="CheckBox.CheckedChanged"/> event.
System\Windows\Forms\Controls\ToolStrips\ToolStripButton.cs (2)
115/// Occurs when the value of the <see cref="CheckBox.Checked"/> property changes. 125/// Occurs when the value of the <see cref="CheckBox.CheckState"/> property changes.
System\Windows\Forms\Controls\ToolStrips\ToolStripMenuItem.cs (2)
318/// Occurs when the value of the <see cref="CheckBox.Checked"/> property changes. 328/// Occurs when the value of the <see cref="CheckBox.CheckState"/> property changes.
System.Windows.Forms.Design (28)
System\ComponentModel\Design\DesignerActionPanel.CheckBoxPropertyLine.cs (1)
13private readonly CheckBox _checkBox;
System\Windows\Forms\Design\BorderSidesEditor.BorderSidesEditorUI.cs (18)
16private CheckBox _allCheckBox; 19private CheckBox _bottomCheckBox; 20private CheckBox _leftCheckBox; 21private CheckBox _noneCheckBox; 23private CheckBox _rightCheckBox; 27private CheckBox _topCheckBox; 185CheckBox senderCheckBox = (CheckBox)sender!; 206CheckBox senderCheckBox = (CheckBox)sender!; 227CheckBox senderCheckBox = (CheckBox)sender!; 248CheckBox senderCheckBox = (CheckBox)sender!; 269CheckBox senderCheckBox = (CheckBox)sender!; 287CheckBox senderCheckBox = (CheckBox)sender!;
System\Windows\Forms\Design\ButtonBaseDesigner.cs (2)
67if (Control is CheckBox or RadioButton) 78if (Control is CheckBox)
System\Windows\Forms\Design\DataGridViewAddColumnDialog.cs (3)
30private CheckBox _visibleCheckBox; 32private CheckBox _readOnlyCheckBox; 34private CheckBox _frozenCheckBox;
System\Windows\Forms\Design\MaskDesignerDialog.cs (1)
18private CheckBox _checkBoxUseValidatingType;
System\Windows\Forms\Design\ShortcutKeysEditor.ShortcutKeysUI.cs (3)
34private CheckBox _altCheckBox; 35private CheckBox _ctrlCheckBox; 36private CheckBox _shiftCheckBox;