SpriteHand
Module Border
  Timers in Silverlight
Module Border
Location: BlogsAndy's Blog    
Posted by: host 5/5/2007 10:36 PM

I was surprised to see that custom timers (like System.Timers.Timer) are not yet supported in Silverlight 1.1 Alpha. These would be great for creating "casual games" such as those that made Flash so popular.

Luckily, I came across this post by Joe Stegman that shows a workaround by using an Animation Timer:

First set up an Animation Timer in your xaml...

<Canvas.Resources>
  <
Storyboard x:Name="timer">
    <
DoubleAnimation Duration="00:00:0.02" />
  </
Storyboard>
</
Canvas.Resources>

Then you can add an "tick" event handler and start up the timer..

timer.Completed += new EventHandler(timer_Completed);
timer.Begin();

And finally, make sure you restart the timer in the timer_Completed event.

void timer_Completed(object sender, EventArgs e)
{
   // ... do per tick stuff here...

   // restart the timer
  
timer.Begin();
}

Permalink |  Trackback

Title:
Comment:
Add Comment   Cancel 
Module Border Module Border
Module Border
  Blog_List
Module Border
Module Border Module Border
Module Border
  Subscribe
Module Border

RSS

Module Border Module Border
Module Border
  Diversions
Module Border

DESTROY ALL INVADERS
A scrolling shooter game where the objective is to destroy the invading UFO's flying over a neighborhood of your choosing. Imagery provided by Microsoft Virtual Earth. Created using Silverlight 2.
PLAY IT

INFO AND CODE



HOOK SHOT
This little basketball game was submitted as an entry to the TeamZoneSports Silverlight Contest. Created using Silverlight 2 and the Farseer Physics engine.
PLAY IT

INFO AND CODE



SORT THE FOOBARS
A game where you need to sort the good foobars from the bad ones. Created using Silverlight 2 and the Farseer Physics engine.
PLAY IT

MORE INFO



POLYGON PHYSICS DEMO
A demo showing polygon physics where the user draws physics objects with the mouse. Created using Silverlight 2 and the Farseer Physics engine.
PLAY IT

MORE INFO



SILVERLIGHT ROCKS!
Destroy the asteroids before they destroy your ship! Created using Silverlight 2.
PLAY IT

INFO AND CODE



FISH GAME
A simple game of harpoon-the-fish. Written using the AJAX Sprite Toolkit.
PLAY IT

INFO AND CODE

Module Border Module Border
Module Border
  Search_Blog
Module Border
Module Border Module Border
Module Border
  Blog_Archive
Module Border
Module Border Module Border
Copyright (c) 2008 andy.beaulieu.com - Login