Is it anyone how to create a thread for timer tick event.
In Windows desktop application timer tick event should
be controlled by a separate thread.
Is it possible?
Is it anyone how to create a thread for timer tick event. In Windows
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use
System.Threading.Timerand the timer event will fire on a worker thread.I am assuming that what you mean by “should be controlled by a separate thread” is that the event handler runs on a thread other than the UI thread.