tags:

views:

66

answers:

1

I am gathering all the routed events fired for the MouseRightDownButton and storing them in a Queue. I have the Sender object as well as the RoutedEventArgs.

Now, I need to fire those events one by one and with a little pause. I also want to update the UI as I fire each event.

Do this require the Timer class?

+1  A: 

Yes it will require a timer of some sort. I would check out the DispatcherTimer class if you need to update objects on the UI.

Charlie
Thanks! I was using Timer and it was having problem with UI object update. Dispatcher seems to be working fine! Thanks
azamsharp