Skip to content

Instantly share code, notes, and snippets.

@dgkanatsios
Created July 25, 2014 18:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dgkanatsios/737be3ecd23a6cc0fb3f to your computer and use it in GitHub Desktop.
Save dgkanatsios/737be3ecd23a6cc0fb3f to your computer and use it in GitHub Desktop.
A snippet to emulate Thread.Sleep in Windows Phone apps via XAML Storyboards
public async static Task CreateSleepStoryboard(int ms)
{
Storyboard sb = new Storyboard();
sb.Duration = TimeSpan.FromMilliseconds(ms);
await sb.BeginAsync();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment