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