25 writes to Checked
System.Web.Entity.Design (5)
System\Data\WebControls\Design\EntityDataSourceDataSelectionPanel.cs (3)
257_enableInsertCheckBox.Checked = enableInsert; 258_enableUpdateCheckBox.Checked = enableUpdate; 259_enableDeleteCheckBox.Checked = enableDelete;
System\Data\WebControls\Design\EntityDataSourceStatementEditorForm.cs (2)
61_autoGenerateCheckBox.Checked = isAutoGen; 111_autoGenerateCheckBox.Checked = false;
System.Web.Mobile (9)
UI\MobileControls\Design\ListItemsPage.cs (5)
156_itemsAsLinksCheckBox.Checked = list.ItemsAsLinks; 160_ckbSelected.Checked = false; 187_ckbSelected.Checked = currentItemNode.Selected; 195_ckbSelected.Checked = false; 316_ckbSelected.Checked = false;
UI\MobileControls\Design\ObjectListFieldsPage.cs (4)
166_ckbVisible.Checked = true; 167_ckbAutoGenerateFields.Checked = _objectList.AutoGenerateFields; 218_ckbVisible.Checked = currentFieldNode.Visible; 225_ckbVisible.Checked = false;
System.Workflow.Activities (2)
Rules\Design\Dialogs\RuleSetDialog.cs (2)
156this.activeCheckBox.Checked = rule.Active; 201this.activeCheckBox.Checked = false;
System.Workflow.ComponentModel (2)
AuthoringOM\Design\Dialogs\WorkflowPageSetupDialog.cs (2)
139this.CenterHorizontallyCheckBox.Checked = this.printDocument.PageSetupData.CenterHorizontally; 140this.CenterVerticallyCheckBox.Checked = this.printDocument.PageSetupData.CenterVertically;
System.WorkflowServices (1)
System\Workflow\Activities\Design\ServiceOperationDetailViewControl.cs (1)
90this.oneWayCheckBox.Checked = operationInfoBase.GetIsOneWay(ServiceProvider);
WsatUI (6)
MMCUI\TraceOptionsForm.cs (3)
125checkBoxActivityTracing.Checked = config.ActivityTracing; 126checkBoxActivityPropagation.Checked = config.ActivityPropagation; 127checkBoxTracePii.Checked = config.TracePii;
MMCUI\WSATControl.cs (3)
97this.checkBoxEnableNetworkSupport.Checked = false; 106this.checkBoxEnableNetworkSupport.Checked = this.oldNetworkSupportEnabledValue; 217this.checkBoxEnableNetworkSupport.Checked = this.config.TransactionBridgeEnabled || this.config.TransactionBridge30Enabled;
29 references to Checked
System.Web.Entity.Design (6)
System\Data\WebControls\Design\EntityDataSourceDataSelectionPanel.cs (3)
144_dataSelection.SelectEnableDelete(_enableDeleteCheckBox.Checked); 153_dataSelection.SelectEnableInsert(_enableInsertCheckBox.Checked); 162_dataSelection.SelectEnableUpdate(_enableUpdateCheckBox.Checked);
System\Data\WebControls\Design\EntityDataSourceStatementEditorForm.cs (3)
81return _autoGenerateCheckBox.Checked; 335if (_autoGenerateCheckBox.Checked) 344_statementPanel.Enabled = !_autoGenerateCheckBox.Checked;
System.Web.Mobile (4)
UI\MobileControls\Design\ListItemsPage.cs (2)
255((ItemTreeNode)CurrentNode).Selected = _ckbSelected.Checked; 288list.ItemsAsLinks = _itemsAsLinksCheckBox.Checked;
UI\MobileControls\Design\ObjectListFieldsPage.cs (2)
288currentFieldNode.Visible = _ckbVisible.Checked; 318_objectList.AutoGenerateFields = _ckbAutoGenerateFields.Checked;
System.Windows.Forms (9)
winforms\Managed\System\WinForms\ButtonInternal\CheckBoxBaseAdapter.cs (1)
127DrawCheckOnly(flatCheckSize, Control.Checked, Control.Enabled, Control.CheckState, e.Graphics, layout, colors, checkColor, checkBackground);
winforms\Managed\System\WinForms\CheckBox.cs (6)
152/// <para>Gets or sets a value indicating whether the <see cref='System.Windows.Forms.CheckBox.Checked'/> or <see cref='System.Windows.Forms.CheckBox.CheckState'/> 232if (value != Checked) { 263bool oldChecked = Checked; 271if (oldChecked != Checked) { 468/// value of the <see cref='System.Windows.Forms.CheckBox.Checked'/> 736if (((CheckBox)Owner).Checked) {
winforms\Managed\System\WinForms\ToolStripButton.cs (1)
148/// value of the <see cref='System.Windows.Forms.CheckBox.Checked'/>
winforms\Managed\System\WinForms\ToolStripMenuItem.cs (1)
413/// value of the <see cref='System.Windows.Forms.CheckBox.Checked'/>
System.Workflow.Activities (1)
Rules\Design\Dialogs\RuleSetDialog.cs (1)
390rule.Active = this.activeCheckBox.Checked;
System.Workflow.ComponentModel (2)
AuthoringOM\Design\Dialogs\WorkflowPageSetupDialog.cs (2)
975this.printDocument.PageSetupData.CenterHorizontally = this.CenterHorizontallyCheckBox.Checked; 976this.printDocument.PageSetupData.CenterVertically = this.CenterVerticallyCheckBox.Checked;
System.WorkflowServices (1)
System\Workflow\Activities\Design\ServiceOperationDetailViewControl.cs (1)
322workflowOperationListItem.Operation.IsOneWay = this.oneWayCheckBox.Checked;
WsatUI (6)
MMCUI\TraceOptionsForm.cs (3)
93config.ActivityTracing = checkBoxActivityTracing.Checked; 94config.ActivityPropagation = checkBoxActivityPropagation.Checked; 95config.TracePii = checkBoxTracePii.Checked;
MMCUI\WSATControl.cs (3)
191this.oldNetworkSupportEnabledValue = this.checkBoxEnableNetworkSupport.Checked; 230this.config.TransactionBridgeEnabled = this.checkBoxEnableNetworkSupport.Checked; 289groupBoxNetwork.Enabled = groupBoxTracing.Enabled = groupBoxTimeouts.Enabled = checkBoxEnableNetworkSupport.Checked;