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