3 overrides of ArcTo
PresentationCore (3)
Core\CSharp\MS\Internal\Media\ParserStreamGeometrycontext.cs (1)
216public override void ArcTo(Point point, Size size, double rotationAngle, bool isLargeArc, SweepDirection sweepDirection, bool isStroked, bool isSmoothJoin)
Core\CSharp\System\Windows\Media\ByteStreamGeometryContext.cs (1)
248public override void ArcTo(Point point, Size size, double rotationAngle, bool isLargeArc, SweepDirection sweepDirection, bool isStroked, bool isSmoothJoin)
Core\CSharp\System\Windows\Media\PathStreamGeometryContext.cs (1)
249public override void ArcTo(Point point, Size size, double rotationAngle, bool isLargeArc, SweepDirection sweepDirection, bool isStroked, bool isSmoothJoin)
10 references to ArcTo
PresentationCore (4)
Core\CSharp\MS\Internal\Ink\StrokeRenderer.cs (1)
972context.ArcTo( arcToPoint,
Core\CSharp\MS\Internal\Media\ParserStreamGeometrycontext.cs (1)
514sc.ArcTo(point, size, rotationAngle, isLargeArc, sweepDirection, isStroked, isSmoothJoin);
Core\CSharp\System\Windows\Media\ArcSegment.cs (1)
146ctx.ArcTo(Point, Size, RotationAngle, IsLargeArc, SweepDirection, IsStroked, IsSmoothJoin);
Core\CSharp\System\Windows\Media\ParsersCommon.cs (1)
692context.ArcTo(
PresentationFramework (4)
src\Framework\System\Windows\Controls\Border.cs (4)
739ctx.ArcTo(rightTop, new Size(radiusX, radiusY), 0, false, SweepDirection.Clockwise, true, false); 751ctx.ArcTo(bottomRight, new Size(radiusX, radiusY), 0, false, SweepDirection.Clockwise, true, false); 763ctx.ArcTo(leftBottom, new Size(radiusX, radiusY), 0, false, SweepDirection.Clockwise, true, false); 775ctx.ArcTo(topLeft, new Size(radiusX, radiusY), 0, false, SweepDirection.Clockwise, true, false);
PresentationFramework.Classic (2)
Microsoft\Windows\Themes\ClassicBorderDecorator.cs (2)
1403sgc.ArcTo(new Point(10, 2), new Size(4, 4), 0, false, SweepDirection.Clockwise, true, false); 1432sgc.ArcTo(new Point(10, 2), new Size(4, 4), 0, false, SweepDirection.Counterclockwise, true, false);