3 overrides of LineTo
PresentationCore (3)
MS\Internal\Media\ParserStreamGeometryContext.cs (1)
133public override void LineTo(Point point, bool isStroked, bool isSmoothJoin)
System\Windows\Media\ByteStreamGeometryContext.cs (1)
107public override void LineTo(Point point, bool isStroked, bool isSmoothJoin)
System\Windows\Media\PathStreamGeometryContext.cs (1)
168public override void LineTo(Point point, bool isStroked, bool isSmoothJoin)
22 references to LineTo
PresentationCore (5)
MS\Internal\Media\ParserStreamGeometryContext.cs (1)
410sc.LineTo(point, isStroked, isSmoothJoin);
System\Windows\Media\LineSegment.cs (1)
87ctx.LineTo(Point, IsStroked, IsSmoothJoin);
System\Windows\Media\ParsersCommon.cs (2)
574context.LineTo(_lastPoint, IsStroked, ! IsSmoothJoin); 596context.LineTo(_lastPoint, IsStroked, ! IsSmoothJoin);
System\Windows\Media\PathGeometry.cs (1)
194ctx.LineTo(pSegmentLine->Point,
PresentationFramework (4)
System\Windows\Controls\Border.cs (4)
722ctx.LineTo(topRight, true /* is stroked */, false /* is smooth join */); 734ctx.LineTo(rightBottom, true /* is stroked */, false /* is smooth join */); 746ctx.LineTo(bottomLeft, true /* is stroked */, false /* is smooth join */); 758ctx.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)
508sgc.LineTo(new Point(3, 7.8), false, false); 509sgc.LineTo(new Point(5.5, 10.4), false, false); 510sgc.LineTo(new Point(10.1, 5.8), false, false); 511sgc.LineTo(new Point(10.1, 3), false, false); 512sgc.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)
508sgc.LineTo(new Point(3, 7.8), false, false); 509sgc.LineTo(new Point(5.5, 10.4), false, false); 510sgc.LineTo(new Point(10.1, 5.8), false, false); 511sgc.LineTo(new Point(10.1, 3), false, false); 512sgc.LineTo(new Point(5.5, 7.6), false, false);
ReachFramework (3)
AlphaFlattener\BrushProxy.cs (3)
4112context.LineTo(mat.Transform(new Point(x + w, y)), true, true); 4113context.LineTo(mat.Transform(new Point(x + w, y + h)), true, true); 4114context.LineTo(mat.Transform(new Point(x, y + h)), true, true);