码迷,mamicode.com
首页 > 其他好文 > 详细

WP8_当滚动到滚动条的70%时,自动加载数据效果实现

时间:2014-07-18 10:08:47      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:des   style   color   os   数据   width   

Touch.FrameReported += Touch_FrameReported;
 
      void Touch_FrameReported(object sender, TouchFrameEventArgs e)
      {
          // 传入null表明获取到的触控点信息是以屏幕左上角为原点的。
          var primaryPoint = e.GetPrimaryTouchPoint(null);
 
          if (primaryPoint != null && primaryPoint.Action == TouchAction.Down && bHistoryInit)
          {
              double v_max = ScrollView1.ScrollableHeight;
              double v_current = ScrollView1.VerticalOffset;
 
              if (v_current / v_max > 0.7)//滚动条 滚动到70%时刷新数据
                ;//调用加载数据的函数           
 }
     }

WP8_当滚动到滚动条的70%时,自动加载数据效果实现,布布扣,bubuko.com

WP8_当滚动到滚动条的70%时,自动加载数据效果实现

标签:des   style   color   os   数据   width   

原文地址:http://www.cnblogs.com/jx270/p/3852409.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!