These animations are called transitions, and they are part of the ListViewStyle . To change it, right-click on the ListView element in the designer and select Edit Template > Edit a Copy... This will add inline style to your XAML.
You are interested in the following part of the style:
<Setter Property="ItemContainerTransitions"> <Setter.Value> <TransitionCollection> <AddDeleteThemeTransition/> <ContentThemeTransition/> <ReorderThemeTransition/> <EntranceThemeTransition IsStaggeringEnabled="False"/> </TransitionCollection> </Setter.Value> </Setter>
I'm not sure which animation you like, but try removing AddDeleteThemeTransition and / or EntranceThemeTransition from the TransitionCollection . He has to do the trick.
Remember to make sure that the changed style is applied to the desired ListView .
source share