0

I'm using DispatcherTimer in WP7 Silverlight to apply a simple translation animation on the menu.

Now, if I decrease the step length, the translation looks smooth, but slow. If I increase the step length, the translation looks fast, but not smooth.

The solution is to keep the step length small and decreasing the interval. But the problem is that the emulator makes the same number of steps for intervals equal 10 ms or less.

introTimer.Interval = TimeSpan.FromMilliseconds(10);

same as:

introTimer.Interval = TimeSpan.FromMilliseconds(1);

So is there a way/alternative/solution to make something happen repeatedly each very small amount of time?

Hamzeh Soboh
  • 7,572
  • 5
  • 43
  • 54

0 Answers0