20 writes to Checked
Accessibility_Core_App (3)
CommonControl2.Designer.cs (1)
110
this.radioButton1.
Checked
= true;
ContainerControls.Designer.cs (1)
350
this.radioButton3.
Checked
= true;
ContainerControls2.Designer.cs (1)
201
this.radioButton3.
Checked
= true;
DesignSurface (1)
MainForm.cs (1)
140
rb2.
Checked
= true;
PresentationUI (2)
MS\Internal\Documents\RMEnrollmentPage2.Designer.cs (1)
170
this._networkRadioButton.
Checked
= true;
MS\Internal\Documents\RMPublishingDialog.cs (1)
90
radioButtonPermissions.
Checked
= true;
System.Windows.Forms (2)
System\Windows\Forms\Controls\Buttons\RadioButton.cs (2)
360
Checked
= true;
420
radioButton.
Checked
= false;
System.Windows.Forms.Design (6)
System\ComponentModel\Design\BinaryEditor.BinaryUI.cs (1)
235
_radioAuto.
Checked
= true;
System\Drawing\Design\SelectionPanelBase.cs (2)
124
radioButton.
Checked
= false;
131
CheckedControl.
Checked
= true;
System\Windows\Forms\Design\DataGridViewAddColumnDialog.cs (3)
183
_dataBoundColumnRadioButton.
Checked
= true;
189
_unboundColumnRadioButton.
Checked
= true;
287
_dataBoundColumnRadioButton.
Checked
= true;
System.Windows.Forms.Tests (4)
System\Windows\Forms\ControlTests.cs (2)
876
using RadioButton radioButton1 = new() {
Checked
= true };
878
using RadioButton radioButton2 = new() {
Checked
= false };
System\Windows\Forms\RadioButtonTests.cs (2)
533
Checked
= true
556
Checked
= true
WinFormsControlsTest (2)
Buttons.cs (1)
55
Checked
= true
TrackBars.Designer.cs (1)
71
this.rbHorizontal.
Checked
= true;
45 references to Checked
PresentationUI (7)
MS\Internal\Documents\RMEnrollmentPage2.cs (2)
59
if (_networkRadioButton.
Checked
)
64
if (_passportRadioButton.
Checked
)
MS\Internal\Documents\RMPublishingDialog.cs (5)
164
return (radioButtonPermissions.
Checked
) ? _rmLicenses : null;
220
if (radioButtonTemplate.
Checked
&& (comboBoxTemplates.SelectedIndex < _templates.Count))
599
if (this.radioButtonUnrestricted.
Checked
)
608
else if (this.radioButtonPermissions.
Checked
)
615
else if (this.radioButtonTemplate.
Checked
)
System.Windows.Forms (19)
System\Windows\Forms\Controls\Buttons\ButtonInternal\RadioButtonBaseAdapter.cs (2)
135
if (!Control.
Checked
)
172
if (Control.
Checked
)
System\Windows\Forms\Controls\Buttons\ButtonInternal\RadioButtonFlatAdapter.cs (3)
19
adapter.PaintDown(e, Control.
Checked
? CheckState.Checked : CheckState.Unchecked);
39
adapter.PaintOver(e, Control.
Checked
? CheckState.Checked : CheckState.Unchecked);
59
adapter.PaintUp(e, Control.
Checked
? CheckState.Checked : CheckState.Unchecked);
System\Windows\Forms\Controls\Buttons\ButtonInternal\RadioButtonPopupAdapter.cs (3)
17
adapter.PaintUp(e, Control.
Checked
? CheckState.Checked : CheckState.Unchecked);
46
adapter.PaintOver(e, Control.
Checked
? CheckState.Checked : CheckState.Unchecked);
71
adapter.PaintDown(e, Control.
Checked
? CheckState.Checked : CheckState.Unchecked);
System\Windows\Forms\Controls\Buttons\ButtonInternal\RadioButtonStandardAdapter.cs (3)
14
ButtonAdapter.PaintUp(e, Control.
Checked
? CheckState.Checked : CheckState.Unchecked);
33
ButtonAdapter.PaintDown(e, Control.
Checked
? CheckState.Checked : CheckState.Unchecked);
45
ButtonAdapter.PaintOver(e, Control.
Checked
? CheckState.Checked : CheckState.Unchecked);
System\Windows\Forms\Controls\Buttons\RadioButton.cs (6)
16
[DefaultProperty(nameof(
Checked
))]
18
[DefaultBindingProperty(nameof(
Checked
))]
54
/// Gets or sets a value indicating whether the <see cref="
Checked
"/> value and the appearance of
314
/// value of the <see cref="
Checked
"/>
418
&& radioButton.
Checked
)
523
public override string ToString() => $"{base.ToString()}, Checked: {
Checked
}";
System\Windows\Forms\Controls\Buttons\RadioButton.RadioButtonAccessibleObject.cs (2)
23
this.TryGetOwnerAs(out RadioButton? owner) && owner.
Checked
27
internal override bool IsItemSelected => this.TryGetOwnerAs(out RadioButton? owner) && owner.
Checked
;
System.Windows.Forms.Design (12)
System\ComponentModel\Design\BinaryEditor.BinaryUI.cs (4)
65
if (_radioAuto.
Checked
)
73
if (_radioHex.
Checked
)
81
if (_radioAnsi.
Checked
)
89
if (_radioUnicode.
Checked
)
System\Windows\Forms\Design\DataGridViewAddColumnDialog.cs (8)
114
if (_dataBoundColumnRadioButton.
Checked
&& _dataColumns.SelectedIndex > -1)
483
_columnInDataSourceLabel.Enabled = _dataBoundColumnRadioButton.
Checked
;
484
_dataColumns.Enabled = _dataBoundColumnRadioButton.
Checked
;
506
if (_unboundColumnRadioButton.
Checked
)
592
if (_dataBoundColumnRadioButton.
Checked
)
598
Debug.Assert(_unboundColumnRadioButton.
Checked
, "we only have 2 radio buttons");
617
if (_dataBoundColumnRadioButton.
Checked
)
624
Debug.Assert(_unboundColumnRadioButton.
Checked
, "We only have 2 radio buttons");
System.Windows.Forms.Tests (7)
System\Windows\Forms\RadioButtonTests.cs (7)
43
Assert.False(control.
Checked
);
747
Assert.Equal(autoCheck, control.
Checked
);
755
Assert.Equal(autoCheck, control.
Checked
);
762
Assert.Equal(autoCheck, control.
Checked
);
794
Assert.Equal(autoCheck, control.
Checked
);
802
Assert.Equal(autoCheck, control.
Checked
);
812
Assert.Equal(autoCheck, control.
Checked
);