3 overrides of LineTo
PresentationCore (3)
MS\Internal\Media\ParserStreamGeometryContext.cs (1)
129
public override void
LineTo
(Point point, bool isStroked, bool isSmoothJoin)
System\Windows\Media\ByteStreamGeometryContext.cs (1)
90
public override void
LineTo
(Point point, bool isStroked, bool isSmoothJoin)
System\Windows\Media\PathStreamGeometryContext.cs (1)
151
public override void
LineTo
(Point point, bool isStroked, bool isSmoothJoin)
22 references to LineTo
PresentationCore (5)
MS\Internal\Media\ParserStreamGeometryContext.cs (1)
406
sc.
LineTo
(point, isStroked, isSmoothJoin);
System\Windows\Media\LineSegment.cs (1)
68
ctx.
LineTo
(Point, IsStroked, IsSmoothJoin);
System\Windows\Media\ParsersCommon.cs (2)
562
context.
LineTo
(_lastPoint, IsStroked, ! IsSmoothJoin);
584
context.
LineTo
(_lastPoint, IsStroked, ! IsSmoothJoin);
System\Windows\Media\PathGeometry.cs (1)
170
ctx.
LineTo
(pSegmentLine->Point,
PresentationFramework (4)
System\Windows\Controls\Border.cs (4)
726
ctx.
LineTo
(topRight, true /* is stroked */, false /* is smooth join */);
738
ctx.
LineTo
(rightBottom, true /* is stroked */, false /* is smooth join */);
750
ctx.
LineTo
(bottomLeft, true /* is stroked */, false /* is smooth join */);
762
ctx.
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)
506
sgc.
LineTo
(new Point(3, 7.8), false, false);
507
sgc.
LineTo
(new Point(5.5, 10.4), false, false);
508
sgc.
LineTo
(new Point(10.1, 5.8), false, false);
509
sgc.
LineTo
(new Point(10.1, 3), false, false);
510
sgc.
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)
506
sgc.
LineTo
(new Point(3, 7.8), false, false);
507
sgc.
LineTo
(new Point(5.5, 10.4), false, false);
508
sgc.
LineTo
(new Point(10.1, 5.8), false, false);
509
sgc.
LineTo
(new Point(10.1, 3), false, false);
510
sgc.
LineTo
(new Point(5.5, 7.6), false, false);
ReachFramework (3)
AlphaFlattener\BrushProxy.cs (3)
4113
context.
LineTo
(mat.Transform(new Point(x + w, y)), true, true);
4114
context.
LineTo
(mat.Transform(new Point(x + w, y + h)), true, true);
4115
context.
LineTo
(mat.Transform(new Point(x, y + h)), true, true);