Reputation: 31
I am trying to make a label update automatically, but since in Windows Phone 8.1 Silverlight I can't use a timer, I have to do it in a different way.
Upvotes: 0
Views: 99
Reputation: 827
use the Task or Threading something like this
private async Task ChangeLabel()
{
while(true)
{
await Task.Delay(100)
label1.Text = "lorem impus";
}
}
Upvotes: 1
Reputation: 4960
Yes, here is a in depth example
label.Text = "Your text here";
Upvotes: 0