WP7如何实现更好的枢轴控制?

时间:2012-11-25 09:55:33

标签: windows-phone-7 pivot swipe

我正在使用枢轴控制来显示大量图像(大约300张)。我想过只使用3个透视项目,当用户滑动时,更改透视图项目或更新项目源。但我不知道如何有效地做到这一点?

或者是否有一种使用手势和刺激滑动效果的方法?像过渡这样的东西?

1 个答案:

答案 0 :(得分:0)

您可以使用普通图像控制和手势操作事件从上到下左右滑动上一张/下一张照片。

请找到以下代码。

XAML Code 

  <!--ContentPanel - place additional content here-->
  <Grid x:Name="ContentPanel" Margin="0">        
     <Image Margin="0" x:Name="ImagePanel"  Source="{Binding SelectedPhoto.PhotoURL}" Stretch="Uniform" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  </Grid>

C# code 
  public SlideShow()
     {
  // Tag ManipulationCompleted event for the current page in the constructor. 
    ManipulationCompleted += new EventHandler<ManipulationCompletedEventArgs>(SlideShow_ManipulationCompleted);
     }

    // ManipulationCompleted event. Update the Previous/next photo based on the swipe direction. 
 void SlideShow_ManipulationCompleted(object sender, ManipulationCompletedEventArgs e)
        {
            var manipEndPoint = e.TotalManipulation.Translation;
            const int threshold = 100;

            if ((manipEndPoint.X > _manipStartPoint.X) && ((manipEndPoint.X - _manipStartPoint.X) > threshold))
            {
                LoadPreviousPhoto();
            }
            else if ((manipEndPoint.X < _manipStartPoint.X) && ((_manipStartPoint.X - manipEndPoint.X) > threshold))
            {
                LoadNextPhoto();
            }
        }

如果您需要更多帮助,请与我们联系。

谢谢, 哈拉。