tags:

views:

86

answers:

2

Quick question:

I need an event that fires every second, just like the timer1_timer() event of VB6. I'm using VB9/Silverlight, creating a small sidebar gadget.

Thanks in advance~

+3  A: 

A good alternative to the DispatchTimer is the Storyboard timer:

http://blogs.silverlight.net/blogs/msnow/archive/2008/07/09/storyboard-versus-dispatchertimer-for-animation-and-game-loops.aspx

JML