1 implementation of ISwipeItems
Microsoft.Maui.Controls (1)
SwipeView\SwipeView.cs (1)
414 class HandlerSwipeItems : List<Maui.ISwipeItem>, ISwipeItems
10 references to ISwipeItems
Microsoft.Maui (6)
Core\ISwipeView.cs (4)
16 public ISwipeItems LeftItems { get; } 21 public ISwipeItems RightItems { get; } 26 public ISwipeItems TopItems { get; } 31 public ISwipeItems BottomItems { get; }
Platform\SwipeViewExtensions.cs (2)
22 internal static ISwipeItems? GetSwipeItemsByDirection(this ISwipeView swipeView, SwipeDirection? swipeDirection) 24 ISwipeItems? swipeItems = null;
Microsoft.Maui.Controls (4)
SwipeView\SwipeView.cs (4)
235 ISwipeItems ISwipeView.LeftItems => new HandlerSwipeItems(LeftItems); 237 ISwipeItems ISwipeView.RightItems => new HandlerSwipeItems(RightItems); 239 ISwipeItems ISwipeView.TopItems => new HandlerSwipeItems(TopItems); 241 ISwipeItems ISwipeView.BottomItems => new HandlerSwipeItems(BottomItems);