WPF ListView on portable device - extremely slow scrolling

前端 未结 5 1796
后悔当初
后悔当初 2021-01-16 19:05

I have a GridView in a ListView contained in a ScrollViewer element.

I understand WPF draws only the visible data at runtime, for example on scrolling grids only th

5条回答
  •  孤独总比滥情好
    2021-01-16 19:32

    Avoid setting the ScrollbarVisibility property to "Auto", that can degrade performance. Instead set it to "Visible", "Disabled", or "Hidden" (in your case probably "Visible").

提交回复
热议问题