如何通过按钮点击事件滑动图像,就像Windows手机图库照片(从左到右或反之,使用2按钮“<”和“>”)。我使用枢轴控制逐个滑动图像&安培;收集所有图像的列表框。它适用于滑动(触摸)手势。
答案 0 :(得分:1)
您可以通过设置Pivot.SelectedIndex
轻松实现此目的喜欢
前进
if(Pivot.selectedIndex < Pivot.Items.Count)
Pivot.selectedIndex++;
else
Pivot.selectedIndex = 0;
用于落后
if(Pivot.selectedIndex > 0)
Pivot.selectedIndex--;
else
Pivot.selectedIndex = Pivot.Items.Count - 1;