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