1 type derived from RadioButton
System.Windows.Forms.Design (1)
System\Drawing\SelectionPanelBase.SelectionPanelRadioButton.cs (1)
10protected class SelectionPanelRadioButton : RadioButton
14 instantiations of RadioButton
PresentationUI (5)
MS\Internal\Documents\RMEnrollmentPage2.Designer.cs (2)
47this._networkRadioButton = new System.Windows.Forms.RadioButton(); 49this._passportRadioButton = new System.Windows.Forms.RadioButton();
MS\Internal\Documents\RMPublishingDialog.Designer.cs (3)
36this.radioButtonUnrestricted = new System.Windows.Forms.RadioButton(); 37this.radioButtonPermissions = new System.Windows.Forms.RadioButton(); 38this.radioButtonTemplate = new System.Windows.Forms.RadioButton();
System.Windows.Forms.Design (9)
System\ComponentModel\Design\BinaryEditor.BinaryUI.cs (4)
157_radioUnicode = new RadioButton(); 158_radioAuto = new RadioButton(); 159_radioAnsi = new RadioButton(); 160_radioHex = new RadioButton();
System\Windows\Forms\Design\DataGridViewAddColumnDialog.cs (2)
261_dataBoundColumnRadioButton = new RadioButton(); 272_unboundColumnRadioButton = new RadioButton();
System\Windows\Forms\Design\StyleEditorForm.cs (3)
177_absoluteRadioButton = new RadioButton(); 180_percentRadioButton = new RadioButton(); 181_autoSizedRadioButton = new RadioButton();
84 references to RadioButton
PresentationUI (5)
MS\Internal\Documents\RMEnrollmentPage2.Designer.cs (2)
247private System.Windows.Forms.RadioButton _networkRadioButton; 248private System.Windows.Forms.RadioButton _passportRadioButton;
MS\Internal\Documents\RMPublishingDialog.Designer.cs (3)
401private System.Windows.Forms.RadioButton radioButtonUnrestricted; 402private System.Windows.Forms.RadioButton radioButtonPermissions; 403private System.Windows.Forms.RadioButton radioButtonTemplate;
System.Windows.Forms (14)
System\Windows\Forms\Controls\Buttons\ButtonInternal\CheckableControlBaseAdapter.cs (1)
50if (Control is RadioButton radioButton)
System\Windows\Forms\Controls\Buttons\ButtonInternal\RadioButtonBaseAdapter.cs (2)
12protected new RadioButton Control => (RadioButton)base.Control;
System\Windows\Forms\Controls\Buttons\RadioButton.cs (3)
39/// Initializes a new instance of the <see cref="RadioButton"/> class. 432if (children[i] is RadioButton radioButton 455if (children[i] is RadioButton button)
System\Windows\Forms\Controls\Buttons\RadioButton.RadioButtonAccessibleObject.cs (8)
11public class RadioButtonAccessibleObject(RadioButton owner) : ControlAccessibleObject(owner) 14this.TryGetOwnerAs(out RadioButton? owner) && owner.AccessibleDefaultActionDescription is { } description 23this.TryGetOwnerAs(out RadioButton? owner) && owner.Checked 27internal override bool IsItemSelected => this.TryGetOwnerAs(out RadioButton? owner) && owner.Checked; 31if (this.IsOwnerHandleCreated(out RadioButton? owner)) 39UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => (VARIANT)(this.TryGetOwnerAs(out RadioButton? owner) && owner.Focused), 53public override string? KeyboardShortcut => this.TryGetOwnerAs(out RadioButton? owner) 61if (!this.TryGetOwnerAs(out RadioButton? owner))
System.Windows.Forms.Design (65)
System\ComponentModel\Design\BinaryEditor.BinaryUI.cs (4)
16private RadioButton _radioAuto; 21private RadioButton _radioHex; 22private RadioButton _radioAnsi; 26private RadioButton _radioUnicode;
System\Drawing\Design\ContentAlignmentEditor.ContentUI.cs (10)
279protected override RadioButton ProcessDownKey(RadioButton checkedControl) 319protected override RadioButton ProcessUpKey(RadioButton checkedControl) 359protected override RadioButton ProcessRightKey(RadioButton checkedControl) 399protected override RadioButton ProcessLeftKey(RadioButton checkedControl) 429protected override RadioButton ProcessTabKey(Keys keyData) 443if (Controls[i] is RadioButton button && Controls[i].TabIndex == nextTabIndex)
System\Drawing\Design\SelectionPanelBase.cs (17)
12private RadioButton? _checkedControl; 15protected RadioButton CheckedControl 49CheckedControl = (RadioButton)sender!; 63var radioButton = (RadioButton)sender!; 65RadioButton target; 108protected abstract RadioButton ProcessDownKey(RadioButton checkedControl); 110protected abstract RadioButton ProcessLeftKey(RadioButton checkedControl); 112protected abstract RadioButton ProcessRightKey(RadioButton checkedControl); 114protected abstract RadioButton ProcessTabKey(Keys keyData); 116protected abstract RadioButton ProcessUpKey(RadioButton checkedControl); 122foreach (RadioButton radioButton in SelectionOptions) 136foreach (RadioButton radioButton in SelectionOptions)
System\Windows\Forms\Design\ButtonBaseDesigner.cs (1)
67if (Control is CheckBox or RadioButton)
System\Windows\Forms\Design\DataGridViewAddColumnDialog.cs (2)
14private RadioButton _dataBoundColumnRadioButton; 19private RadioButton _unboundColumnRadioButton;
System\Windows\Forms\Design\DockEditor.DockUI.cs (22)
19private readonly RadioButton _fill; 20private readonly RadioButton _left; 21private readonly RadioButton[] _leftRightOrder; 22private readonly RadioButton _none; 23private readonly RadioButton _right; 24private readonly RadioButton[] _tabOrder; 25private readonly RadioButton _top; 26private readonly RadioButton _bottom; 27private readonly RadioButton[] _upDownOrder; 222protected override RadioButton ProcessDownKey(RadioButton checkedControl) 225protected override RadioButton ProcessLeftKey(RadioButton checkedControl) 228private RadioButton ProcessLeftRight(RadioButton checkedControl, bool leftDirection) 244protected override RadioButton ProcessRightKey(RadioButton checkedControl) => ProcessLeftRight(checkedControl, false); 246protected override RadioButton ProcessTabKey(Keys keyData) 261protected override RadioButton ProcessUpKey(RadioButton checkedControl) => ProcessUpDown(checkedControl, true); 263private RadioButton ProcessUpDown(RadioButton checkedControl, bool upDirection)
System\Windows\Forms\Design\NavigationalTableLayoutPanel.cs (6)
10private List<RadioButton> RadioButtons 14List<RadioButton> radioButtons = []; 17RadioButton radioButton = (RadioButton)control; 35List<RadioButton> radioButtons = RadioButtons; 39RadioButton radioButton = radioButtons[i];
System\Windows\Forms\Design\StyleEditorForm.cs (3)
55private RadioButton _absoluteRadioButton; 56private RadioButton _percentRadioButton; 57private RadioButton _autoSizedRadioButton;