1 override of Location
System.Workflow.ComponentModel (1)
AuthoringOM\Design\CompositeActivityDesigner.cs (1)
201
public override Point
Location
22 writes to Location
System.Workflow.Activities (2)
Designers\StateDesigner.Layouts.cs (2)
693
designerLayout.ActivityDesigner.
Location
= layout.Location;
1387
this.StateDesigner.ActiveDesigner.
Location
= origin;
System.Workflow.ComponentModel (20)
AuthoringOM\Design\ActivityDesigner.cs (2)
1982
activityDesigner.
Location
= new Point(-1, -1);
1983
activityDesigner.
Location
= Point.Empty;
AuthoringOM\Design\ActivityPreviewDesigner.cs (2)
172
PreviewedDesigner.
Location
= new Point(Location.X + (Size.Width - PreviewedDesigner.Size.Width) / 2, Location.Y + headerHeight + 2 * WorkflowTheme.CurrentTheme.AmbientTheme.Margin.Height);
595
PreviewedDesigner.
Location
= new Point(Location.X + (Size.Width - PreviewedDesigner.Size.Width) / 2, Location.Y + headerHeight + 2 * e.AmbientTheme.Margin.Height);
AuthoringOM\Design\CompositeActivityDesigner.cs (2)
216
activityDesigner.
Location
= new Point(activityDesigner.Location.X + moveDelta.Width, activityDesigner.Location.Y + moveDelta.Height);
218
base.
Location
= value;
AuthoringOM\Design\DesignerWidgets.cs (1)
3262
PreviewDesigner.
Location
= location;
AuthoringOM\Design\FreeFormDesigner.cs (6)
316
containedDesigners[i].
Location
= containedDesignerLocations[i];
845
containedDesigner.
Location
= DesignerHelpers.SnapToGrid(containedDesigner.Location);
919
designer.
Location
= new Point(location.X + autoSizeMargin.Width, location.Y + autoSizeMargin.Height);
989
designer.
Location
+= direction;
1056
designer.
Location
= bounds.Location;
1325
designer.
Location
= location;
AuthoringOM\Design\ParallelActivityDesigner.cs (1)
230
activityDesigner.
Location
= new Point(location.X + width, location.Y + height);
AuthoringOM\Design\SequentialActivityDesigner.cs (1)
463
activityDesigner.
Location
= new Point(location.X - (designerSize.Width / 2), location.Y + height);
AuthoringOM\Design\StructuredCompositeActivityDesigner.cs (2)
546
activeDesigner.
Location
= location;
551
activityDesigner.
Location
= new Point(activityDesigner.Location.X, activityDesigner.Location.Y + titleHeight);
AuthoringOM\Design\WorkflowPrinting.cs (1)
313
this.workflowView.RootDesigner.
Location
= Point.Empty;
AuthoringOM\Design\WorkflowView.cs (2)
362
this.rootDesigner.
Location
= this.activeLayout.RootDesignerAlignment;
1296
this.rootDesigner.
Location
= this.activeLayout.RootDesignerAlignment;
27 references to Location
System.Workflow.ComponentModel (22)
AuthoringOM\Design\ActivityDesigner.cs (3)
264
return new Rectangle(
Location
, Size);
1068
graphics.TranslateTransform(-
Location
.X + 2 * ambientTheme.Margin.Width, -
Location
.Y + 2 * ambientTheme.Margin.Height);
AuthoringOM\Design\CompositeActivityDesigner.cs (6)
205
return base.
Location
;
211
if (base.
Location
== value)
214
Size moveDelta = new Size(value.X - base.
Location
.X, value.Y - base.
Location
.Y);
216
activityDesigner.Location = new Point(activityDesigner.
Location
.X + moveDelta.Width, activityDesigner.
Location
.Y + moveDelta.Height);
AuthoringOM\Design\FreeFormDesigner.cs (7)
290
containedDesignerLocations.Add(activityDesigner.
Location
);
537
FreeformActivityDesigner.SetDesignerBounds(containedDesigner, new Rectangle(containedDesigner.
Location
, newSize));
845
containedDesigner.Location = DesignerHelpers.SnapToGrid(containedDesigner.
Location
);
918
if (designer.
Location
.IsEmpty)
988
ParentView.InvalidateClientRectangle(new Rectangle(designer.
Location
, designer.Size));
990
ParentView.InvalidateClientRectangle(new Rectangle(designer.
Location
, designer.Size));
1313
location = designer.
Location
;
AuthoringOM\Design\MessageFilters\FreeFormDragDropManager.cs (2)
256
location = new Point(designerToMove.
Location
.X + delta.Width, designerToMove.
Location
.Y + delta.Height);
AuthoringOM\Design\ParallelActivityDesigner.cs (2)
289
dropTargets[0].Location = new Point(bounds.X, firstDesigner.
Location
.Y);
306
dropTargets[containedDesigners.Count].Location = new Point(bounds.Right - ((designerTheme != null) ? designerTheme.ConnectorSize.Width : 0), lastDesigner.
Location
.Y);
AuthoringOM\Design\StructuredCompositeActivityDesigner.cs (2)
551
activityDesigner.Location = new Point(activityDesigner.
Location
.X, activityDesigner.
Location
.Y + titleHeight);
System.WorkflowServices (5)
System\Workflow\Activities\SendActivityDesigner.cs (4)
136
Rectangle outgoingArrowRect = new Rectangle(this.
Location
.X + this.Size.Width - 24, this.
Location
.Y + 10, 24, 24);
137
Rectangle incomingArrowRect = new Rectangle(this.
Location
.X + this.Size.Width, this.
Location
.Y + this.Size.Height - 35, -24, 24);
System\Workflow\ComponentModel\Design\ActivityDesignerHighlighter.cs (1)
97
Point scrollPosition = workflowView.ClientPointToLogical(owner.
Location
);