I\'m a newbie in WPF and please, guide me in the right direction for this problem.
I have built a WPF application which contains all the functionality of that of a r
I am not quite sure if this is what you are looking for, but I'll give it a shot.
The animation would be a bit complex. It would actually be a series of animations, one for each point in your path minus the first point. You would want to add point to the animated path, one at a time, from the source path. Each time you add a point, that point starts at the previous point, and travels to the desired point. The animation would move the newly added point along over time, giving the effect of that segment being "drawn". When that animation completes, you iterate to your next point and begin the next animation.