Prevent the listview from scrolling to its top position when ItemSource changed Windows 8.1

荒凉一梦 提交于 2019-12-06 12:37:13

问题


So is there a way to stop scrolling up ?

I have listview's scrollview and i tryed saving last position and in listview size changed scroll down - but it first scrolls down and later up ;/ Maybe there is some different event or completly different way ?


回答1:


You can set the ItemsStackPanel's ItemUpdatingScrollMode.

    <ListView>
        <ListView.ItemsPanel>
            <ItemsPanelTemplate>
                <ItemsStackPanel ItemsUpdatingScrollMode="KeepScrollOffset" />
            </ItemsPanelTemplate>
        </ListView.ItemsPanel>
    </ListView>

It only works when the scroll offset is greater than 0, so just scroll using ChangeView() to set it up.



来源:https://stackoverflow.com/questions/27924000/prevent-the-listview-from-scrolling-to-its-top-position-when-itemsource-changed

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!