Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Segments of a path have a IsSmoothJoin property, defaulting to false. I have never tried it but it seems to be a good candidate.
Another idea is to use a PolyLine (instead of a Path, if that’s OK in your case). PolyLine has the StrokeLineJoin property, of type PenLineJoin, which allow for rounded corners. See MSDN, under Strokes, for the possibilities.
Edit: added the following:
Actually, the StrokeLineJoin property comes from the Shape class, and Path is a subclass of Shape, so you can use this property directly in the Path instance.