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