1 write to workflowView
System.Workflow.ComponentModel (1)
AuthoringOM\Design\CommandSet.cs (1)
55
this.
workflowView
= serviceProvider.GetService(typeof(WorkflowView)) as WorkflowView;
24 references to workflowView
System.Workflow.ComponentModel (24)
AuthoringOM\Design\CommandSet.cs (24)
56
if (this.
workflowView
== null)
169
this.
workflowView
.RemoveDesignerMessageFilter(this.activeFilter);
192
int commandID = this.ConvertToZoomCommand(this.
workflowView
.Zoom);
206
menuCommand.Checked = this.
workflowView
.PrintPreviewMode ? (menuCommand.CommandID == WorkflowMenuCommands.PrintPreview || menuCommand.CommandID == WorkflowMenuCommands.PrintPreviewPage) : menuCommand.CommandID == WorkflowMenuCommands.DefaultPage;
273
this.
workflowView
.RemoveDesignerMessageFilter(this.activeFilter);
289
int newZoom = (int)(100.0f / this.
workflowView
.ActiveLayout.Scaling * Math.Min((float)this.
workflowView
.ViewPortSize.Width / (float)this.
workflowView
.ActiveLayout.Extent.Width, (float)this.
workflowView
.ViewPortSize.Height / (float)this.
workflowView
.ActiveLayout.Extent.Height));
290
this.
workflowView
.Zoom = Math.Min(Math.Max(newZoom, AmbientTheme.MinZoom), AmbientTheme.MaxZoom);
294
this.
workflowView
.Zoom = ConvertToZoomLevel(menuCommand.CommandID.ID);
308
this.
workflowView
.PrintPreviewMode = (menuCommand.CommandID == WorkflowMenuCommands.PrintPreview) ? !this.
workflowView
.PrintPreviewMode : (menuCommand.CommandID == WorkflowMenuCommands.PrintPreviewPage);
321
this.
workflowView
.RemoveDesignerMessageFilter(this.activeFilter);
335
this.
workflowView
.AddDesignerMessageFilter(this.activeFilter);
337
this.
workflowView
.Focus();
528
(this.
workflowView
.RootDesigner != null && this.
workflowView
.RootDesigner.Activity == activity))
734
this.
workflowView
.PerformLayout(false);
759
this.
workflowView
.SaveWorkflowImage(saveFileDialog.FileName, supportedFormats[saveFileDialog.FilterIndex - 1].Format);
764
this.
workflowView
.SaveWorkflowImageToClipboard();
778
PrintDocument printDoc = this.
workflowView
.PrintDocument;
950
this.
workflowView
.EnsureVisible(this.selectionService.PrimarySelection);