This repository has been archived by the owner on May 1, 2024. It is now read-only.
Replies: 1 comment
-
I think there is no need to wrap that in BeginInvoke |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi All,
Suppose I have a
List<T> DisplayItems
in my view model, and I have a collection view / bindable layout on the XAML page which hasItemsSource="{Binding DisplayItems}"
Suppose I want to reassign with new data, e.g.
DisplayItems = newDataListObject
in the logic of my view model.Do I need to do that assignment on the MainThread? e.g.
Or will the PropertyChanged notification take care of ensuring UI is updated on the main thread?
Beta Was this translation helpful? Give feedback.
All reactions