3 overrides of LineTo
PresentationCore (3)
Core\CSharp\MS\Internal\Media\ParserStreamGeometrycontext.cs (1)
136public override void LineTo(Point point, bool isStroked, bool isSmoothJoin)
Core\CSharp\System\Windows\Media\ByteStreamGeometryContext.cs (1)
125public override void LineTo(Point point, bool isStroked, bool isSmoothJoin)
Core\CSharp\System\Windows\Media\PathStreamGeometryContext.cs (1)
171public override void LineTo(Point point, bool isStroked, bool isSmoothJoin)
18 references to LineTo
PresentationCore (4)
Core\CSharp\MS\Internal\Media\ParserStreamGeometrycontext.cs (1)
414sc.LineTo(point, isStroked, isSmoothJoin);
Core\CSharp\System\Windows\Media\LineSegment.cs (1)
90ctx.LineTo(Point, IsStroked, IsSmoothJoin);
Core\CSharp\System\Windows\Media\ParsersCommon.cs (2)
578context.LineTo(_lastPoint, IsStroked, ! IsSmoothJoin); 600context.LineTo(_lastPoint, IsStroked, ! IsSmoothJoin);
PresentationFramework (4)
src\Framework\System\Windows\Controls\Border.cs (4)
731ctx.LineTo(topRight, true /* is stroked */, false /* is smooth join */); 743ctx.LineTo(rightBottom, true /* is stroked */, false /* is smooth join */); 755ctx.LineTo(bottomLeft, true /* is stroked */, false /* is smooth join */); 767ctx.LineTo(leftTop, true /* is stroked */, false /* is smooth join */);
PresentationFramework.Luna (5)
parent\Shared\Microsoft\Windows\Themes\BulletChrome.cs (5)
513sgc.LineTo(new Point(3, 7.8), false, false); 514sgc.LineTo(new Point(5.5, 10.4), false, false); 515sgc.LineTo(new Point(10.1, 5.8), false, false); 516sgc.LineTo(new Point(10.1, 3), false, false); 517sgc.LineTo(new Point(5.5, 7.6), false, false);
PresentationFramework.Royale (5)
parent\Shared\Microsoft\Windows\Themes\BulletChrome.cs (5)
513sgc.LineTo(new Point(3, 7.8), false, false); 514sgc.LineTo(new Point(5.5, 10.4), false, false); 515sgc.LineTo(new Point(10.1, 5.8), false, false); 516sgc.LineTo(new Point(10.1, 3), false, false); 517sgc.LineTo(new Point(5.5, 7.6), false, false);