I have a texbox and I want to change it’s content every second in Windows Phone 7.. For example I have an int list and I want to show it’s first value.. then 1 second later the second value.
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.
DispatcherTimer is what you’re looking for: http://msdn.microsoft.com/en-us/library/system.windows.threading.dispatchertimer%28v=vs.95%29.aspx
Create a new instance of DispatcherTimer, set it to tick every second, and update the textbox in the callback function.