Xamarin.Forms.Carousel查看next和prev项目事件来自按钮

时间:2017-01-16 10:30:34

标签: c# xaml xamarin xamarin.forms carousel

Xamarin.Forms.CarouselView

大家好,我的目标是滚动到下一页或上一页CarouselView索引,使用箭头按钮前后箭头。 问题是我发现在线事件推进了CarouselView的索引。 有可能吗?存在? 谢谢

GitHub开源项目here

1 个答案:

答案 0 :(得分:1)

您必须绑定到CarouselView的Position属性。

该属性在github中可用here

    public int Position
    {
        get { return (int)GetValue(PositionProperty); }
        set { SetValue(PositionProperty, value); }
    }

你可以找到一个很好的样本,你要完成的任务here