• [更新]Windows Phone 实现类似“微博”下拉刷新效果


    上文中还有不少bug,而且实现上拖泥带水,最近好好看了下scrollview的api,下面是精炼后的代码,少了很多,而且精准。

    用的时候只需要在相应的事件里写入下面的代码就可以了。

    第一种状态(提示下拉可以更新博客园新闻):

    第二种状态(提示下拉的幅度已够可以释放进入更新操作)

     

    第三种状态(提示正在更新,更新完毕回到第一个状态)

     

    private double actuableOffset, validStartOffset;
     private bool mplStarted;
    protected override void OnManipulationStarted(ManipulationStartedEventArgs e)
            {
                base.OnManipulationStarted(e);
                mplStarted = true;
            }
    protected override void OnManipulationCompleted(ManipulationCompletedEventArgs e)
            {
                //150是下拉的距离可以自己调适
                if (actuableOffset > 150 && scrollViewer.VerticalOffset == 0)
                {
                    MessageBox.Show("Head pull bingo!");
                }
                if(actuableOffset<-150&&scrollViewer.VerticalOffset==scrollViewer.ScrollableHeight)
                {
                    MessageBox.Show("Tail pull bingo!");
                }
                base.OnManipulationCompleted(e);
            }
    protected override void OnMouseMove(MouseEventArgs e)
            {
                //head capture startRelative
                if ( scrollViewer.VerticalOffset == 0)
                {
                    if (mplStarted)
                    {
                        mplStarted = false;
                        validStartOffset = e.GetPosition(null).Y;
                    }
                    actuableOffset = e.GetPosition(null).Y - validStartOffset;
                }
                //tail
                if(scrollViewer.VerticalOffset==scrollViewer.ScrollableHeight)
                {
                    if(mplStarted)
                    {
                        mplStarted = false;
                        validStartOffset = e.GetPosition(null).Y;
                    }
                    actuableOffset = e.GetPosition(null).Y - validStartOffset;
                }
                UIControlHelper.FindFirst<Pivot>().Title = actuableOffset;
                base.OnMouseMove(e);
            }
  • 相关阅读:
    Python分析44130条用户观影数据,挖掘用户与电影之间的隐藏信息!
    办公利器!用Python快速将任意文件转为PDF
    教你用python搭建一个「生活常识解答」机器人
    办公利器!用Python批量识别发票并录入到Excel表格
    遇到禁止复制该怎么办?幸好我会Python...
    通知:生物信息学云论坛第十五场报告会
    centos7设置SSH安全策略–指定IP登陆
    SpringMVC—RequestMapping注解参数说明
    SpringMVC-方法四种类型返回值总结,你用过几种?
    Window下:自带python编辑器的wxpython项目发布打包exe
  • 原文地址:https://www.cnblogs.com/jinzhao/p/2370424.html
Copyright © 2020-2023  润新知