Here is my code..

public DispatcherTimer tmr = new DispatcherTimer();

void somefunction (parameters){

if (something)
  tmr.Start();
if (something else)
  tmr.Stop();

   }

My problem is that I can't access the Start/Stop methods of the tmr object from the second function since it runs on a different thread!!!

Can somebody please help me?? I am struck wih this problem for almost 3 days! :(

link|improve this question

33% accept rate
feedback

1 Answer

You need to Invoke it via Dispatcher (for marshaling the call from another thread) like so

Deployment.Current.Dispatcher.BeginInvoke((Action)(()=>timer.Start())
link|improve this answer
thanks hasan..but since "tmr" is already a DispatcherTimer object, it does not have a Dispatcher method in it! This would have worked if tmr is just a timer object, but it is not.. :( – Gowtham Oct 10 '11 at 7:30
@Gowtham try updated answer – Hasan Khan Oct 10 '11 at 7:33
it still does not work. The error I get is.. System.Windows.Threading.Dispatcher' does not contain a definition for 'Invoke' and no extension method 'Invoke' accepting a first argument of type 'System.Windows.Threading.Dispatcher' could be found (are you missing a using directive or an assembly reference?) – Gowtham Oct 10 '11 at 7:40
@Gowtham Try begininvoke instead – Hasan Khan Oct 10 '11 at 7:41
I tried setting Isenabled to true or false. but that doesnt work either. Can you please tell me how to use BeginInvoke ?? I really appreciate the interest you are taking in this....:) – Gowtham Oct 10 '11 at 7:44
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.