Scroll view performance issue

Hi,

I used the Scroll View container to create a table with 1000 elements at runtime. When I am not scrolling the frame rate is really high but when I scroll the frame rate drops a lot. Please see attached pictures for reference.

Could you please explain why this would happen? I thought UIElements reuses elements in a scroll view.

ScrollView is not virtualized. ListView is the virtualized one. That said, it will only virtualize elements vertically, not horizontally. So if you have a lot of columns, the cells for the visible rows will still all be created for each column.