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;
});
Não há mais suporte para esse navegador.
Atualize o Microsoft Edge para aproveitar os recursos, o suporte técnico e as atualizações de segurança mais recentes.
Use “Deployment.Current.Dispatcher.BeginInvoke”.
sample:
Deployment.Current.Dispatcher.BeginInvoke(delegate()
{
LoadingBar = Visibility.Collapsed;
});