18 writes to Checked
System.Web.Entity.Design (3)
System\Data\WebControls\Design\EntityDataSourceConfigureObjectContextPanel.cs (2)
335
_namedConnectionRadioButton.
Checked
= isNamedConnection;
337
_connectionStringRadioButton.
Checked
= !isNamedConnection;
System\Data\WebControls\Design\EntityDataSourceConfigureObjectContextPanel.designer.cs (1)
83
this._namedConnectionRadioButton.
Checked
= true;
System.Web.Mobile (4)
UI\MobileControls\Design\DeviceFilterEditorDialog.cs (4)
564
_rbCompare.
Checked
= true;
579
_rbDelegate.
Checked
= true;
590
_rbCompare.
Checked
= false;
591
_rbDelegate.
Checked
= false;
System.Windows.Forms (1)
winforms\Managed\System\WinForms\RadioButton.cs (1)
455
Checked
= true;
System.Workflow.ComponentModel (10)
AuthoringOM\Design\Dialogs\ActivityBindForm.cs (1)
57
this.createProperty.
Checked
= true; //make the property to be the default emitted entity
AuthoringOM\Design\Dialogs\ActivityBindForm.Designer.cs (1)
91
this.createField.
Checked
= true;
AuthoringOM\Design\Dialogs\WorkflowPageSetupDialog.cs (8)
125
this.adjustToRadioButton.
Checked
= true;
127
this.fitToRadioButton.
Checked
= true;
131
this.landscapeRadioButton.
Checked
= true;
133
this.portraitRadioButton.
Checked
= true;
1040
this.landscapeRadioButton.
Checked
= true;
1042
this.portraitRadioButton.
Checked
= true;
1132
this.adjustToRadioButton.
Checked
= true;
1136
this.fitToRadioButton.
Checked
= true;
25 references to Checked
System.Web.Entity.Design (5)
System\Data\WebControls\Design\EntityDataSourceConfigureObjectContextPanel.cs (5)
124
if (_connectionStringRadioButton.
Checked
)
166
if (_namedConnectionRadioButton.
Checked
)
251
bool isNamedConnection = _namedConnectionRadioButton.
Checked
;
252
Debug.Assert(!isNamedConnection ? _connectionStringRadioButton.
Checked
: true, "only expecting either named connection or connection string radio button options");
275
if (_namedConnectionRadioButton.
Checked
)
System.Windows.Forms (16)
winforms\Managed\System\WinForms\ButtonInternal\RadioButtonBaseAdapter.cs (2)
136
if (Control.
Checked
) {
158
if (Control.
Checked
) {
winforms\Managed\System\WinForms\ButtonInternal\RadioButtonFlatAdapter.cs (3)
25
adapter.PaintDown(e, Control.
Checked
? CheckState.Checked : CheckState.Unchecked);
41
adapter.PaintOver(e, Control.
Checked
? CheckState.Checked : CheckState.Unchecked);
57
adapter.PaintUp(e, Control.
Checked
? CheckState.Checked : CheckState.Unchecked);
winforms\Managed\System\WinForms\ButtonInternal\RadioButtonPopupAdapter.cs (3)
24
adapter.PaintUp(e, Control.
Checked
? CheckState.Checked : CheckState.Unchecked);
46
adapter.PaintOver(e, Control.
Checked
? CheckState.Checked : CheckState.Unchecked);
69
adapter.PaintDown(e, Control.
Checked
? CheckState.Checked : CheckState.Unchecked);
winforms\Managed\System\WinForms\ButtonInternal\RadioButtonStandardAdapter.cs (3)
22
ButtonAdapter.PaintUp(e, Control.
Checked
? CheckState.Checked : CheckState.Unchecked);
38
ButtonAdapter.PaintDown(e, Control.
Checked
? CheckState.Checked : CheckState.Unchecked);
47
ButtonAdapter.PaintOver(e, Control.
Checked
? CheckState.Checked : CheckState.Unchecked);
winforms\Managed\System\WinForms\RadioButton.cs (5)
87
/// <para>Gets or sets a value indicating whether the <see cref='System.Windows.Forms.RadioButton.
Checked
'/>
394
/// value of the <see cref='System.Windows.Forms.RadioButton.
Checked
'/>
508
if (button.autoCheck && button.
Checked
) {
634
return s + ", Checked: " +
Checked
.ToString();
686
if (((RadioButton)Owner).
Checked
) {
System.Workflow.ComponentModel (4)
AuthoringOM\Design\Dialogs\ActivityBindForm.cs (1)
218
this.createNewProperty = this.createProperty.
Checked
;
AuthoringOM\Design\Dialogs\WorkflowPageSetupDialog.cs (3)
964
this.printDocument.PageSetupData.AdjustToScaleFactor = this.adjustToRadioButton.
Checked
;
971
this.printDocument.PageSetupData.Landscape = this.landscapeRadioButton.
Checked
;
1120
this.footerMarginInput.Maximum = this.headerMarginInput.Maximum = PrinterUnitToUIUnit(this.landscapeRadioButton.
Checked
? paperSize.Width : paperSize.Height);