18 writes to CheckedControl
System.Windows.Forms.Design (18)
System\Drawing\Design\ContentAlignmentEditor.ContentUI.cs (9)
76
CheckedControl
= _topLeft;
79
CheckedControl
= _topCenter;
82
CheckedControl
= _topRight;
85
CheckedControl
= _middleLeft;
88
CheckedControl
= _middleCenter;
91
CheckedControl
= _middleRight;
94
CheckedControl
= _bottomLeft;
97
CheckedControl
= _bottomCenter;
100
CheckedControl
= _bottomRight;
System\Drawing\Design\SelectionPanelBase.cs (3)
49
CheckedControl
= (RadioButton)sender!;
93
CheckedControl
= target;
101
CheckedControl
= ProcessTabKey(keyData);
System\Windows\Forms\Design\DockEditor.DockUI.cs (6)
148
CheckedControl
= _none;
151
CheckedControl
= _fill;
154
CheckedControl
= _left;
157
CheckedControl
= _right;
160
CheckedControl
= _top;
163
CheckedControl
= _bottom;
19 references to CheckedControl
System.Windows.Forms.Design (19)
System\Drawing\Design\ContentAlignmentEditor.ContentUI.cs (10)
34
if (
CheckedControl
== _topLeft)
38
else if (
CheckedControl
== _topCenter)
42
else if (
CheckedControl
== _topRight)
46
else if (
CheckedControl
== _middleLeft)
50
else if (
CheckedControl
== _middleCenter)
54
else if (
CheckedControl
== _middleRight)
58
else if (
CheckedControl
== _bottomLeft)
62
else if (
CheckedControl
== _bottomCenter)
431
int nextTabIndex =
CheckedControl
.TabIndex + ((keyData & Keys.Shift) == 0 ? 1 : -1);
449
return
CheckedControl
;
System\Drawing\Design\SelectionPanelBase.cs (2)
41
CheckedControl
.Focus();
131
CheckedControl
.Checked = true;
System\Windows\Forms\Design\DockEditor.DockUI.cs (7)
120
if (
CheckedControl
== _fill)
124
else if (
CheckedControl
== _left)
128
else if (
CheckedControl
== _right)
132
else if (
CheckedControl
== _top)
136
else if (
CheckedControl
== _bottom)
250
if (_tabOrder[i] ==
CheckedControl
)
258
return
CheckedControl
;