17 references to Add
System.Activities.Core.Presentation (6)
System\Activities\Core\Presentation\FlowchartDesigner.Container.cs (2)
465Point nPt = Point.Add(pt, offset); 485modifiedValues.Add(viewStatePair.Key, Point.Add((Point)viewStatePair.Value, offsetVector));
System\Activities\Core\Presentation\FlowchartDesigner.xaml.cs (1)
2010Point newLocation = Point.Add(currentLocation, moveDir);
System\Activities\Core\Presentation\StateContainerEditor.CompositeView.cs (2)
490viewState = Point.Add((Point)viewState, offsetVector); 514Point newLocation = Point.Add(location, offsetVector);
System\Activities\Core\Presentation\StateContainerEditor.xaml.cs (1)
2105Point newLocation = Point.Add(currentLocation, moveDir);
System.Activities.Presentation (11)
System.Activities.Presentation\System\Activities\Presentation\FreeFormEditing\ConnectorPointsToSegmentsConverter.cs (2)
41Point turningPoint1 = Point.Add(pointCollection[i - 1], Vector.Multiply(dist1 - RoundRadius, firstSegmentPointingVector)); 42Point turningPoint2 = Point.Add(pointCollection[i], Vector.Multiply(RoundRadius, secondSegmentPointingVector));
System.Activities.Presentation\System\Activities\Presentation\FreeFormEditing\ConnectorRouter.cs (9)
133Rect rect = new Rect(Point.Add(panel.TranslatePoint(FreeFormPanel.GetLocation(child), outmostPanel), new Vector(margin.Left, margin.Top)), childSize); 1194this.point1 = Point.Add(this.point1, new Vector(extendedLength, 0)); 1195this.point2 = Point.Add(this.point2, new Vector(-extendedLength, 0)); 1199this.point1 = Point.Add(this.point1, new Vector(-extendedLength, 0)); 1200this.point2 = Point.Add(this.point2, new Vector(extendedLength, 0)); 1207this.point1 = Point.Add(this.point1, new Vector(0, extendedLength)); 1208this.point2 = Point.Add(this.point2, new Vector(0, -extendedLength)); 1212this.point1 = Point.Add(this.point1, new Vector(0, -extendedLength)); 1213this.point2 = Point.Add(this.point2, new Vector(0, extendedLength));