
This article introduces how to create a usercontrol and enable animation to do a random movement within the parent control area. I am still new to WPF, so I am not sure if I am doing the right thing, so if not, please let me know. Thanks There are major two ways to implement an animation in WPF: 1. StoryBoard with using DoubleAnimation, VectorAnimation, or anything similar 2. DispatcherTimer I have read some online blogs say using StoryBoard is better than using the timer. It probably is true, but in this article, I am using the timer because it's easier to code... well, maybe
|