jackbond:
Nokola:DispatcherTimer is probably preferred (easier to read) in this case.
I saw your post here and your blog entry. They're a little confusing as you are creating a Timer with the sole purpose of invoking on the ui thread, which is basically the DispatcherTimer's job.
Thank you for your comment. I agree that DispatcherTimer is better for ontimer events, and also updated this on my blog. btw, I also referenced back to you and this forum for more clarification, hope you don't mind.
DispatcherTimer timer = new DispatcherTimer();
timer.Interval = new TimeSpan(1000);
timer.Tick += new EventHandler(timer_Tick);
timer.Start();
Thanks,
-------
Please mark this post as answer if it answers your question!
Nikola - MSFT
http://blogs.msdn.com/nikola