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