Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sonnguyen0310/7b0f8f4bae2a0731b601a5f23d01a2d9 to your computer and use it in GitHub Desktop.
Save sonnguyen0310/7b0f8f4bae2a0731b601a5f23d01a2d9 to your computer and use it in GitHub Desktop.
xamarin form UI thread
var syncContext = SynchronizationContext.Current; // UI Thread
Task.Run(() =>
{
LatLon result = HeavyFunction(); // Run synchronously on background
syncContext.Post(state =>
{
// Run on UI Thread
map.Pins.Add(new Pin(…)); // Add pin or few pins
}, null);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment