CollectionView Blocks UI #15880
Unanswered
Petrarca181
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello this is mine CollectionViev,
XAML
Item source is Observable collection inside ViewModel. The data is ready to use in another static class. I attach it like this
ItemsList = MyStaticClass.ReadyToUseList;
If I do this inside constructor, when I try to navigate to the page this block the ui and navigates after 2-3 second without animation. It's enough to have 6-7 items to reduce performance so much.
Also if I remove any item from the collection
ItemsList.Remove(item);
, this will also block ui for 1-2 sec first time, afer removing items is much smoohter.Am I doing somtehing wrong?
Beta Was this translation helpful? Give feedback.
All reactions