Xamarin.Forms.CarouselView
大家好,我的目标是滚动到下一页或上一页CarouselView索引,使用箭头按钮前进和后退。问题是,我通过查找在线事件来提升CarouselView的索引。有可能做到吗?存在吗?谢谢
GitHub开源项目here
发布于 2017-01-16 22:26:59
您必须绑定到CarouselView的Position属性。
Position
该属性在github中可用here。
public int Position { get { return (int)GetValue(PositionProperty); } set { SetValue(PositionProperty, value); } }
您可以找到一个很好的示例来说明您正在尝试实现的here。
https://stackoverflow.com/questions/41674305
相似问题