Created
July 2, 2013 04:51
-
-
Save clairernovotny/5906841 to your computer and use it in GitHub Desktop.
UI thread for store
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public IAsyncAction ExecuteOnUIThread<TException>(DispatchedHandler action) | |
{ | |
return CoreApplication.MainView.CoreWindow.Dispatcher.RunAsync(CoreDispatcherPriority.Normal, action); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment