zoukankan      html  css  js  c++  java
  • Why does my ListView scroll to the top when navigating backwards?

    I’ve seen a few people asking this question. They have a page which contains a ListView and when an item is selected it navigates to another page. When they navigate backwards the ListView is back up to the top again. This behavior is due to the NavigationCacheMode of the page. By default the page will not cache rendered content when navigating “forward”. So when you navigate back to the page it re-renders the content. When displaying content like a ListView this will cause it to show the top content.

    navigation

    As with most things, there are a few solutions to this problem. The most common solution is to set the NaivationCacheMode to Enabled or Required.

    public ListPage()
    {
        this.InitializeComponent();
     
        this.NavigationCacheMode = NavigationCacheMode.Required;
    }

    These options do the following:

    MemberValueDescription
    Disabled 0

    The page is never cached and a new instance of the page is created on each visit.

    Required 1

    The page is cached and the cached instance is reused for every visit regardless of the cache size for the frame.

    Enabled 2

    The page is cached, but the cached instance is discarded when the size of the cache for the frame is exceeded.

    With this property set for the page the page content will not re-render because the rendered state has been cached!

    It does get a little annoying to set the property for every page. I like to use a base page class that contains all my navigation stuff and cache mode as well. This makes it much easier to do the basic stuff.

    public class AppPage : Page
    {
        public AppPage()
        {
            NavigationCacheMode = NavigationCacheMode.Enabled;
     
            // other stuff for navigation
        }
    }
     
    public partial class ListPage : AppPage
    {
        ...
    }

    Unfortunately this is not a dependency property so you cannot create a base style that sets this property.

    A second option is to use the ScrollIntoView method of the ListView. When your page loads, simply scroll your current item into view. This does have the drawback of not being at the exact same spot as before so I do recommend using the NavigationCacheMode.

    查看原文

  • 相关阅读:
    修理牛棚 贪心 USACO
    零件加工 贪心 题解
    花店橱窗 动态规划 题解
    动态规划 摆花 题解
    NOIP2004普及组第3题 FBI树
    实况世界杯4小游戏链接
    poj2761(treap入门)
    最大连续子序列和(分治法)
    任意区间的最长连续递增子序列,最大连续子序列和
    lca转RMQ
  • 原文地址:https://www.cnblogs.com/qixue/p/4863705.html
Copyright © 2011-2022 走看看