[更新]Windows Phone 實作類別似“微博”下拉重新整理效果

來源:互聯網
上載者:User

在上文中還有不少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);
        }
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.