6 references to Bounds
System.Workflow.ComponentModel (6)
AuthoringOM\Design\ActivityDesigner.cs (1)
1755
FreeformActivityDesigner.SetDesignerBounds(this, e.
Bounds
);
AuthoringOM\Design\FreeFormDesigner.cs (5)
935
bounds.X = Math.Min(minRectangle.Left, e.
Bounds
.Left);
936
bounds.Y = Math.Min(minRectangle.Top, e.
Bounds
.Top);
937
bounds.Width = Math.Max(minRectangle.Right - bounds.Left, e.
Bounds
.Right - bounds.Left);
938
bounds.Height = Math.Max(minRectangle.Bottom - bounds.Top, e.
Bounds
.Bottom - bounds.Top);
940
if (bounds != e.
Bounds
)