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