In this article let us learn how to use Easing function in a Silverlight application. When we animate  something inWPF or Silverlight, the result of that animation is linear. To make our animations more interesting, we can make use of easing function in silverlight. Easing essentially changes our animation from being linear to something by slowing down or speeding up the rate at which our properties change. In this article let us learn its implementation.

As usual, open visual studio and select Silverlight project. We can notice that there is a Grid layout in our MainPage.xaml.  Remove the default Grid layout and just drag and drop the Stack panel Layout into our ....