8 writes to Checked
System.Workflow.ComponentModel (8)
AuthoringOM\Design\CommandSet.cs (3)
196menuCommand.Checked = (commandID == menuCommand.CommandID.ID); 206menuCommand.Checked = this.workflowView.PrintPreviewMode ? (menuCommand.CommandID == WorkflowMenuCommands.PrintPreview || menuCommand.CommandID == WorkflowMenuCommands.PrintPreviewPage) : menuCommand.CommandID == WorkflowMenuCommands.DefaultPage; 216menuCommand.Checked = (commandID == menuCommand.CommandID);
AuthoringOM\Design\MessageFilters\PanningMessageFilter.cs (2)
126menuCommand.Checked = (menuCommand.CommandID == WorkflowMenuCommands.Pan); 159menuCommand.Checked = (menuCommand.CommandID == this.previousCommand);
AuthoringOM\Design\MessageFilters\ZoomingMessageFilter.cs (2)
231menuCommand.Checked = (menuCommand.CommandID == this.previousCommand); 271menuCommand.Checked = (menuCommand.CommandID == ((this.initialState == ZoomState.In) ? WorkflowMenuCommands.ZoomIn : WorkflowMenuCommands.ZoomOut));
AuthoringOM\Design\StructuredCompositeActivityDesigner.cs (1)
768verb.Checked = (view == ActiveView);
2 references to Checked
System.Workflow.ComponentModel (2)
AuthoringOM\Design\MessageFilters\PanningMessageFilter.cs (1)
139if (menuCommand != null && menuCommand.Enabled && menuCommand.Checked)
AuthoringOM\Design\MessageFilters\ZoomingMessageFilter.cs (1)
211if (menuCommand != null && menuCommand.Enabled && menuCommand.Checked)