3 overrides of ArcTo
PresentationCore (3)
MS\Internal\Media\ParserStreamGeometryContext.cs (1)
213
public override void
ArcTo
(Point point, Size size, double rotationAngle, bool isLargeArc, SweepDirection sweepDirection, bool isStroked, bool isSmoothJoin)
System\Windows\Media\ByteStreamGeometryContext.cs (1)
215
public override void
ArcTo
(Point point, Size size, double rotationAngle, bool isLargeArc, SweepDirection sweepDirection, bool isStroked, bool isSmoothJoin)
System\Windows\Media\PathStreamGeometryContext.cs (1)
246
public override void
ArcTo
(Point point, Size size, double rotationAngle, bool isLargeArc, SweepDirection sweepDirection, bool isStroked, bool isSmoothJoin)
11 references to ArcTo
PresentationCore (5)
MS\Internal\Ink\StrokeRenderer.cs (1)
959
context.
ArcTo
( arcToPoint,
MS\Internal\Media\ParserStreamGeometryContext.cs (1)
510
sc.
ArcTo
(point, size, rotationAngle, isLargeArc, sweepDirection, isStroked, isSmoothJoin);
System\Windows\Media\ArcSegment.cs (1)
139
ctx.
ArcTo
(Point, Size, RotationAngle, IsLargeArc, SweepDirection, IsStroked, IsSmoothJoin);
System\Windows\Media\ParsersCommon.cs (1)
688
context.
ArcTo
(
System\Windows\Media\PathGeometry.cs (1)
242
ctx.
ArcTo
(pSegmentArc->Point,
PresentationFramework (4)
System\Windows\Controls\Border.cs (4)
730
ctx.
ArcTo
(rightTop, new Size(radiusX, radiusY), 0, false, SweepDirection.Clockwise, true, false);
742
ctx.
ArcTo
(bottomRight, new Size(radiusX, radiusY), 0, false, SweepDirection.Clockwise, true, false);
754
ctx.
ArcTo
(leftBottom, new Size(radiusX, radiusY), 0, false, SweepDirection.Clockwise, true, false);
766
ctx.
ArcTo
(topLeft, new Size(radiusX, radiusY), 0, false, SweepDirection.Clockwise, true, false);
PresentationFramework.Classic (2)
Microsoft\Windows\Themes\ClassicBorderDecorator.cs (2)
1398
sgc.
ArcTo
(new Point(10, 2), new Size(4, 4), 0, false, SweepDirection.Clockwise, true, false);
1427
sgc.
ArcTo
(new Point(10, 2), new Size(4, 4), 0, false, SweepDirection.Counterclockwise, true, false);