13 references to Separator
System.Workflow.ComponentModel (13)
AuthoringOM\Design\FreeFormDesigner.cs (2)
253
minimumSize.Width = Math.Max(minimumSize.Width, workflowView.ViewPortSize.Width - 2 * WorkflowRootLayout.
Separator
.Width);
254
minimumSize.Height = Math.Max(minimumSize.Height, workflowView.ViewPortSize.Height - 2 * WorkflowRootLayout.
Separator
.Height);
AuthoringOM\Design\SequentialWorkflowRootDesigner.cs (2)
98
minimumSize.Width = Math.Max(minimumSize.Width, ParentView.ViewPortSize.Width - 2 * WorkflowRootLayout.
Separator
.Width);
99
minimumSize.Height = Math.Max(minimumSize.Height, ParentView.ViewPortSize.Height - 2 * WorkflowRootLayout.
Separator
.Height);
AuthoringOM\Design\WorkflowLayouts.cs (7)
86
Size totalSize = new Size(rootDesignerSize.Width + DefaultWorkflowLayout.
Separator
.Width * 2, rootDesignerSize.Height + DefaultWorkflowLayout.
Separator
.Height * 2);
96
return new Point(DefaultWorkflowLayout.
Separator
);
217
Size totalSize = new Size(rootDesignerSize.Width + DefaultWorkflowLayout.
Separator
.Width * 2, rootDesignerSize.Height + DefaultWorkflowLayout.
Separator
.Height * 2);
259
rootBounds.Inflate(ActivityRootLayout.
Separator
.Width / 2, ActivityRootLayout.
Separator
.Height / 2);
AuthoringOM\Design\WorkflowView.cs (2)
1535
viewPortData.LogicalViewPort = new Rectangle(Point.Empty, new Size(rootDesigner.Bounds.Width + 2 * DefaultWorkflowLayout.
Separator
.Width, rootDesigner.Bounds.Height + 2 * DefaultWorkflowLayout.
Separator
.Height));