NicolTIP#027: How to update the UI from a worker thread on Windows Phone 7?
Use “Deployment.Current.Dispatcher.BeginInvoke”.
sample:
Deployment.Current.Dispatcher.BeginInvoke(delegate()
{
LoadingBar = Visibility.Collapsed;
});
Este explorador ya no se admite.
Actualice a Microsoft Edge para aprovechar las características y actualizaciones de seguridad más recientes, y disponer de soporte técnico.
Use “Deployment.Current.Dispatcher.BeginInvoke”.
sample:
Deployment.Current.Dispatcher.BeginInvoke(delegate()
{
LoadingBar = Visibility.Collapsed;
});