I want a XAML page to perform an action once every 1/2 second.
How would I do this?
I’m thinking that I could use a Timer that starts when the page is loaded and resets once it gets to 500 milliseconds, but I’m not entirely sure how to do this.
It doesn’t have to be extremely precise.
You can use DispatcherTimer for example. For sample code look at documentation.