Whenever I type in "DispatcherTimer" I get an error.
Do you have a "using System.Windows.Threading;" statement in the .cs file where you are trying to use this? If not, you have to reference the DispatchTimer in code with the full reference. Example:
System.Windows.Threading.DispatchTimer sampleDispatchTimer = newSystem.Windows.Threading.DispatchTimer();