1 instantiation of SwipeItems
Microsoft.Maui.Controls (1)
SwipeView\SwipeView.cs (1)
212 SwipeItems SwipeItemsDefaultValueCreator() => new SwipeItems();
23 references to SwipeItems
Microsoft.Maui.Controls (23)
SwipeView\SwipeItems.cs (3)
38 public static readonly BindableProperty ModeProperty = BindableProperty.Create(nameof(Mode), typeof(SwipeMode), typeof(SwipeItems), SwipeMode.Reveal); 40 public static readonly BindableProperty SwipeBehaviorOnInvokedProperty = BindableProperty.Create(nameof(SwipeBehaviorOnInvoked), typeof(SwipeBehaviorOnInvoked), typeof(SwipeItems), SwipeBehaviorOnInvoked.Auto); 164 this.CreateLogger<SwipeItems>()
SwipeView\SwipeView.cs (20)
40 BindableProperty.Create(nameof(LeftItems), typeof(SwipeItems), typeof(SwipeView), null, BindingMode.OneWay, null, defaultValueCreator: SwipeItemsDefaultValueCreator, 45 BindableProperty.Create(nameof(RightItems), typeof(SwipeItems), typeof(SwipeView), null, BindingMode.OneWay, null, defaultValueCreator: SwipeItemsDefaultValueCreator, 50 BindableProperty.Create(nameof(TopItems), typeof(SwipeItems), typeof(SwipeView), null, BindingMode.OneWay, null, defaultValueCreator: SwipeItemsDefaultValueCreator, 55 BindableProperty.Create(nameof(BottomItems), typeof(SwipeItems), typeof(SwipeView), null, BindingMode.OneWay, null, defaultValueCreator: SwipeItemsDefaultValueCreator, 66 public SwipeItems LeftItems 68 get { return (SwipeItems)GetValue(LeftItemsProperty); } 73 public SwipeItems RightItems 75 get { return (SwipeItems)GetValue(RightItemsProperty); } 80 public SwipeItems TopItems 82 get { return (SwipeItems)GetValue(TopItemsProperty); } 87 public SwipeItems BottomItems 89 get { return (SwipeItems)GetValue(BottomItemsProperty); } 138 if (oldValue is SwipeItems oldItems) 145 if (newValue is SwipeItems newItems) 154 if (sender is SwipeItems swipeItems) 160 if (sender is SwipeItems swipeItems) 164 void SendChange(SwipeItems swipeItems) 212 SwipeItems SwipeItemsDefaultValueCreator() => new SwipeItems(); 416 readonly SwipeItems _swipeItems; 418 public HandlerSwipeItems(SwipeItems swipeItems) : base(swipeItems)