コード例 #1
0
 public static void MapIsSwipeEnabled(CarouselViewHandler handler, CarouselView carouselView)
 {
     (handler.PlatformView as IMauiCarouselRecyclerView).IsSwipeEnabled = carouselView.IsSwipeEnabled;
 }
コード例 #2
0
 public static void MapPeekAreaInsets(CarouselViewHandler handler, CarouselView carouselView)
 {
 }
コード例 #3
0
 public static void MapLoop(CarouselViewHandler handler, CarouselView carouselView)
 {
 }
コード例 #4
0
 public static void MapPosition(CarouselViewHandler handler, CarouselView carouselView)
 {
 }
コード例 #5
0
 public static void MapIsSwipeEnabled(CarouselViewHandler handler, CarouselView carouselView)
 {
 }
コード例 #6
0
 public static void MapPosition(CarouselViewHandler handler, CarouselView carouselView)
 {
     (handler.PlatformView as IMauiCarouselRecyclerView).UpdateFromPosition();
 }
コード例 #7
0
 public static void MapIsBounceEnabled(CarouselViewHandler handler, CarouselView carouselView)
 {
     handler.Controller.CollectionView.Bounces = carouselView.IsBounceEnabled;
 }
コード例 #8
0
 public static void MapPosition(CarouselViewHandler handler, CarouselView carouselView)
 {
     handler.UpdatePosition();
 }
コード例 #9
0
 public static void MapIsBounceEnabled(CarouselViewHandler handler, CarouselView carouselView)
 {
     handler.UpdateIsBounceEnabled();
 }
コード例 #10
0
 public static void MapLoop(CarouselViewHandler handler, CarouselView carouselView)
 {
     (handler.Controller as CarouselViewController)?.UpdateLoop();
 }
コード例 #11
0
 public static void MapCurrentItem(CarouselViewHandler handler, CarouselView carouselView)
 {
     handler.UpdateCurrentItem();
 }
コード例 #12
0
 public static void MapPosition(CarouselViewHandler handler, CarouselView carouselView)
 {
     (handler.Controller as CarouselViewController)?.UpdateFromPosition();
 }
コード例 #13
0
 public static void MapCurrentItem(CarouselViewHandler handler, CarouselView carouselView)
 {
     (handler.Controller as CarouselViewController)?.UpdateFromCurrentItem();
 }
コード例 #14
0
 public static void MapPeekAreaInsets(CarouselViewHandler handler, CarouselView carouselView)
 {
     (handler.Controller.Layout as CarouselViewLayout)?.UpdateConstraints(handler.PlatformView.Frame.Size);
     handler.Controller.Layout.InvalidateLayout();
 }
コード例 #15
0
 public static void MapIsBounceEnabled(CarouselViewHandler handler, CarouselView carouselView)
 {
     handler.PlatformView.OverScrollMode = carouselView?.IsBounceEnabled == true ? OverScrollMode.Always : OverScrollMode.Never;
 }
コード例 #16
0
 public static void MapLoop(CarouselViewHandler handler, CarouselView carouselView)
 {
     handler.UpdateLoop();
 }
コード例 #17
0
 public static void MapPeekAreaInsets(CarouselViewHandler handler, CarouselView carouselView)
 {
     (handler.PlatformView as IMauiRecyclerView <CarouselView>).UpdateAdapter();
 }
コード例 #18
0
 public static void MapCurrentItem(CarouselViewHandler handler, CarouselView carouselView)
 {
 }
コード例 #19
0
 public static void MapCurrentItem(CarouselViewHandler handler, CarouselView carouselView)
 {
     (handler.PlatformView as IMauiCarouselRecyclerView).UpdateFromCurrentItem();
 }
コード例 #20
0
 public static void MapIsSwipeEnabled(CarouselViewHandler handler, CarouselView carouselView)
 {
     handler.Controller.CollectionView.ScrollEnabled = carouselView.IsSwipeEnabled;
 }