8 writes to IsSmoothJoin
PresentationCore (8)
System\Windows\Media\BezierSegment.cs (1)
40IsSmoothJoin = isSmoothJoin;
System\Windows\Media\Generated\PolyBezierSegmentFigureLogic.cs (1)
52IsSmoothJoin = isSmoothJoin;
System\Windows\Media\Generated\PolyLineSegmentFigureLogic.cs (1)
52IsSmoothJoin = isSmoothJoin;
System\Windows\Media\Generated\PolyQuadraticBezierSegmentFigureLogic.cs (1)
52IsSmoothJoin = isSmoothJoin;
System\Windows\Media\LineSegment.cs (1)
37IsSmoothJoin = isSmoothJoin;
System\Windows\Media\PathStreamGeometryContext.cs (2)
274segment.IsSmoothJoin = isSmoothJoin; 439segment.IsSmoothJoin = _currentSegmentIsSmoothJoin;
System\Windows\Media\QuadraticBezierSegment.cs (1)
40IsSmoothJoin = isSmoothJoin;
15 references to IsSmoothJoin
PresentationCore (14)
System\Windows\Media\ArcSegment.cs (2)
91bool isSmoothJoin = IsSmoothJoin; 123ctx.ArcTo(Point, Size, RotationAngle, IsLargeArc, SweepDirection, IsStroked, IsSmoothJoin);
System\Windows\Media\BezierSegment.cs (2)
66figure.Segments.Add(new BezierSegment(pt1, pt2, pt3, IsStroked, IsSmoothJoin)); 78ctx.BezierTo(Point1, Point2, Point3, IsStroked, IsSmoothJoin);
System\Windows\Media\Generated\PolyBezierSegmentFigureLogic.cs (2)
84figure.Segments.Add(new PolyBezierSegment(copy, IsStroked, IsSmoothJoin)); 107ctx.PolyBezierTo(Points, IsStroked, IsSmoothJoin);
System\Windows\Media\Generated\PolyLineSegmentFigureLogic.cs (2)
84figure.Segments.Add(new PolyLineSegment(copy, IsStroked, IsSmoothJoin)); 107ctx.PolyLineTo(Points, IsStroked, IsSmoothJoin);
System\Windows\Media\Generated\PolyQuadraticBezierSegmentFigureLogic.cs (2)
84figure.Segments.Add(new PolyQuadraticBezierSegment(copy, IsStroked, IsSmoothJoin)); 107ctx.PolyQuadraticBezierTo(Points, IsStroked, IsSmoothJoin);
System\Windows\Media\LineSegment.cs (2)
58figure.Segments.Add(new LineSegment(pt, IsStroked, IsSmoothJoin)); 68ctx.LineTo(Point, IsStroked, IsSmoothJoin);
System\Windows\Media\QuadraticBezierSegment.cs (2)
64figure.Segments.Add(new QuadraticBezierSegment(pt1, pt2, IsStroked, IsSmoothJoin)); 76ctx.QuadraticBezierTo(Point1, Point2, IsStroked, IsSmoothJoin);
ReachFramework (1)
Serialization\VisualSerializer.cs (1)
1249if (!ps.IsStroked || ps.IsSmoothJoin)