5 overrides of LineTo
PresentationCore (3)
MS\Internal\Media\ParserStreamGeometryContext.cs (1)
128public override void LineTo(Point point, bool isStroked, bool isSmoothJoin)
System\Windows\Media\ByteStreamGeometryContext.cs (1)
89public override void LineTo(Point point, bool isStroked, bool isSmoothJoin)
System\Windows\Media\PathStreamGeometryContext.cs (1)
150public override void LineTo(Point point, bool isStroked, bool isSmoothJoin)
PresentationFramework (1)
System\Windows\Documents\FixedSOMPageConstructor.cs (1)
121public override void LineTo(Point point, bool isStroked, bool isSmoothJoin)
ReachFramework (1)
AlphaFlattener\Utility.cs (1)
2693public override void LineTo(Point point, bool isStroked, bool isSmoothJoin)
22 references to LineTo
PresentationCore (5)
MS\Internal\Media\ParserStreamGeometryContext.cs (1)
405sc.LineTo(point, isStroked, isSmoothJoin);
System\Windows\Media\LineSegment.cs (1)
67ctx.LineTo(Point, IsStroked, IsSmoothJoin);
System\Windows\Media\ParsersCommon.cs (2)
561context.LineTo(_lastPoint, IsStroked, ! IsSmoothJoin); 583context.LineTo(_lastPoint, IsStroked, ! IsSmoothJoin);
System\Windows\Media\PathGeometry.cs (1)
169ctx.LineTo(pSegmentLine->Point,
PresentationFramework (4)
System\Windows\Controls\Border.cs (4)
725ctx.LineTo(topRight, true /* is stroked */, false /* is smooth join */); 737ctx.LineTo(rightBottom, true /* is stroked */, false /* is smooth join */); 749ctx.LineTo(bottomLeft, true /* is stroked */, false /* is smooth join */); 761ctx.LineTo(leftTop, true /* is stroked */, false /* is smooth join */);
PresentationFramework.Luna (5)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\BulletChrome.cs (5)
503sgc.LineTo(new Point(3, 7.8), false, false); 504sgc.LineTo(new Point(5.5, 10.4), false, false); 505sgc.LineTo(new Point(10.1, 5.8), false, false); 506sgc.LineTo(new Point(10.1, 3), false, false); 507sgc.LineTo(new Point(5.5, 7.6), false, false);
PresentationFramework.Royale (5)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\BulletChrome.cs (5)
503sgc.LineTo(new Point(3, 7.8), false, false); 504sgc.LineTo(new Point(5.5, 10.4), false, false); 505sgc.LineTo(new Point(10.1, 5.8), false, false); 506sgc.LineTo(new Point(10.1, 3), false, false); 507sgc.LineTo(new Point(5.5, 7.6), false, false);
ReachFramework (3)
AlphaFlattener\BrushProxy.cs (3)
4105context.LineTo(mat.Transform(new Point(x + w, y)), true, true); 4106context.LineTo(mat.Transform(new Point(x + w, y + h)), true, true); 4107context.LineTo(mat.Transform(new Point(x, y + h)), true, true);