1 override of CommandID
System.Workflow.ComponentModel (1)
AuthoringOM\Design\DesignerInterfaces.cs (1)
918
public override CommandID
CommandID
30 references to CommandID
System (1)
compmod\system\componentmodel\design\MenuCommand.cs (1)
237
string str =
CommandID
.ToString() + " : ";
System.Workflow.ComponentModel (29)
AuthoringOM\Design\CommandSet.cs (23)
144
if (this.menuCommandService.FindCommand(this.commandSet[i].
CommandID
) == null)
196
menuCommand.Checked = (commandID == menuCommand.
CommandID
.ID);
206
menuCommand.Checked = this.workflowView.PrintPreviewMode ? (menuCommand.
CommandID
== WorkflowMenuCommands.PrintPreview || menuCommand.
CommandID
== WorkflowMenuCommands.PrintPreviewPage) : menuCommand.
CommandID
== WorkflowMenuCommands.DefaultPage;
216
menuCommand.Checked = (commandID == menuCommand.
CommandID
);
287
if (menuCommand.
CommandID
.ID == WorkflowMenuCommands.ShowAll.ID)
294
this.workflowView.Zoom = ConvertToZoomLevel(menuCommand.
CommandID
.ID);
308
this.workflowView.PrintPreviewMode = (menuCommand.
CommandID
== WorkflowMenuCommands.PrintPreview) ? !this.workflowView.PrintPreviewMode : (menuCommand.
CommandID
== WorkflowMenuCommands.PrintPreviewPage);
326
int commandId = menuCommand.
CommandID
.ID;
502
((menuCommand.
CommandID
== WorkflowMenuCommands.Expand && !compositeDesigner.Expanded) ||
503
(menuCommand.
CommandID
== WorkflowMenuCommands.Collapse && compositeDesigner.Expanded)))
543
menuCommand.Visible = menuCommand.Enabled = (enabled && ((menuCommand.
CommandID
== WorkflowMenuCommands.Enable && !enabledPropertyValue) || (menuCommand.
CommandID
== WorkflowMenuCommands.Disable && enabledPropertyValue)));
589
if (menuCommand.
CommandID
.ID == MenuCommands.KeyMoveDown.ID)
591
else if (menuCommand.
CommandID
.ID == MenuCommands.KeyMoveUp.ID)
593
else if (menuCommand.
CommandID
.ID == MenuCommands.KeyMoveLeft.ID)
595
else if (menuCommand.
CommandID
.ID == MenuCommands.KeyMoveRight.ID)
597
else if (menuCommand.
CommandID
.ID == MenuCommands.KeySelectNext.ID)
599
else if (menuCommand.
CommandID
.ID == MenuCommands.KeySelectPrevious.ID)
617
designer.Expanded = (menuCommand.
CommandID
.ID == WorkflowMenuCommands.Expand.ID);
708
SendKeyDownCommand((menuCommand.
CommandID
== WorkflowMenuCommands.PageUp) ? Keys.PageUp : Keys.PageDown);
AuthoringOM\Design\MessageFilters\PanningMessageFilter.cs (3)
126
menuCommand.Checked = (menuCommand.
CommandID
== WorkflowMenuCommands.Pan);
141
this.previousCommand = menuCommand.
CommandID
;
159
menuCommand.Checked = (menuCommand.
CommandID
== this.previousCommand);
AuthoringOM\Design\MessageFilters\ZoomingMessageFilter.cs (3)
213
this.previousCommand = menuCommand.
CommandID
;
231
menuCommand.Checked = (menuCommand.
CommandID
== this.previousCommand);
271
menuCommand.Checked = (menuCommand.
CommandID
== ((this.initialState == ZoomState.In) ? WorkflowMenuCommands.ZoomIn : WorkflowMenuCommands.ZoomOut));