Assuming I have a Polyline and I wish to move only the end of the Polyline from A to B using animation. How should I go about doing it?
p/s: I’ll still prefer if the suggestion is for polyline and not for other controls such as path and so on 🙂

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.
Not possible out of the box as far as I’m aware, since you’re trying to animate a
Pointwithin aPointCollection. What you really need is aPointCollectionAnimation, which WPF doesn’t provide. However, the awesome Charles Petzold wrote this article some time ago showing you how you can go about it.