Base:
property
Location
System.Workflow.ComponentModel.Design.ActivityDesigner.Location
2 overrides of Location
System.Workflow.ComponentModel (2)
AuthoringOM\Design\ActivityPreviewDesigner.cs (1)
143public override Point Location
AuthoringOM\Design\FreeFormDesigner.cs (1)
271public override Point Location
2 writes to Location
System.Workflow.ComponentModel (2)
AuthoringOM\Design\ActivityPreviewDesigner.cs (1)
158base.Location = value;
AuthoringOM\Design\FreeFormDesigner.cs (1)
311base.Location = value;
20 references to Location
System.Workflow.ComponentModel (16)
AuthoringOM\Design\ActivityPreviewDesigner.cs (4)
147return base.Location; 153if (base.Location == value) 156Size moveDelta = new Size(value.X - base.Location.X, value.Y - base.Location.Y);
AuthoringOM\Design\FreeFormDesigner.cs (3)
275return base.Location; 294Size moveDelta = new Size(value.X - base.Location.X, value.Y - base.Location.Y);
AuthoringOM\Design\ParallelActivityDesigner.cs (4)
221Point location = (connectionPoints.Count > 0) ? new Point(Location.X, connectionPoints[0].Y) : Location; 311dropTargets[0].Location = new Point(Location.X + (Size.Width - ((designerTheme != null) ? designerTheme.ConnectorSize.Width : 0)) / 2, TextRectangle.Bottom); 312dropTargets[0].Size = new Size(((designerTheme != null) ? designerTheme.ConnectorSize.Width : 0), Location.Y + Size.Height - dropTargets[0].Location.Y);
AuthoringOM\Design\SequentialActivityDesigner.cs (1)
446Point location = (connectionPoints.Count > 0) ? connectionPoints[0] : Location;
AuthoringOM\Design\SequentialWorkflowRootDesigner.cs (3)
400headerBarRectangle.Location = AssociatedDesigner.Location; 434bounds.Y = rootDesigner.Location.Y + rootDesigner.TitleHeight + rootDesigner.OptimalHeight; 456imageRectangle.Y = rootDesigner.Location.Y + rootDesigner.TitleHeight + rootDesigner.OptimalHeight;
AuthoringOM\Design\StructuredCompositeActivityDesigner.cs (1)
543Point location = Location;
System.WorkflowServices (4)
System\Workflow\Activities\ReceiveActivityDesigner.cs (4)
184Rectangle incomingArrowRect = new Rectangle(this.Location.X - 2, this.Location.Y + 20, 24, 24); 185Rectangle outgoingArrowRect = new Rectangle(this.Location.X + 22, this.Location.Y + this.Size.Height - 45, -24, 24);