You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to use the ProgressDialog to show what it's doing without stressing out the UI thread but it does not appear to be updating the UI thread when I use Dispatcher.Invoke(() => { Items.Add(networkItem); Data.ItemsSource = Items; }, System.Windows.Threading.DispatcherPriority.Render); or Application.Current.Dispatcher.Invoke(() => { Items.Add(networkItem); Data.ItemsSource = Items; }); I do not know if this is because of this NuGet package or not.
The text was updated successfully, but these errors were encountered:
I'm trying to use the ProgressDialog to show what it's doing without stressing out the UI thread but it does not appear to be updating the UI thread when I use
Dispatcher.Invoke(() => { Items.Add(networkItem); Data.ItemsSource = Items; }, System.Windows.Threading.DispatcherPriority.Render);
orApplication.Current.Dispatcher.Invoke(() => { Items.Add(networkItem); Data.ItemsSource = Items; });
I do not know if this is because of this NuGet package or not.The text was updated successfully, but these errors were encountered: