09-03-2012 // http://pagead2.googlesyndication.com/pagead/show_ads.js WPF doesn’t have a straightforward Timer control that you can drag and drop from the Toolbox. However, ther’s still a straightforward easy way to implement this. You can use the provided System.Windows.Threading.DispatcherTimer class for this It’s easy as abc. Steps: 1 Create an instance System.Windows.Threading.DispatcherTimer TimerName = new System.Windows.Threading.DispatcherTimer() ; 2 CreateContinue reading “Using DispatcherTimer To Create A Timer In WPF”