6 references to SwipeItemView
Microsoft.Maui.Controls (6)
Hosting\AppHostBuilderExtensions.cs (1)
146 handlersCollection.AddHandler<SwipeItemView, SwipeItemViewHandler>();
SwipeView\SwipeItemView.cs (5)
13 public static readonly BindableProperty CommandProperty = BindableProperty.Create(nameof(Command), typeof(ICommand), typeof(SwipeItemView), null, 14 propertyChanging: (bo, o, n) => ((SwipeItemView)bo).OnCommandChanging(), 15 propertyChanged: (bo, o, n) => ((SwipeItemView)bo).OnCommandChanged()); 18 public static readonly BindableProperty CommandParameterProperty = BindableProperty.Create(nameof(CommandParameter), typeof(object), typeof(SwipeItemView), null, 19 propertyChanged: (bo, o, n) => ((SwipeItemView)bo).OnCommandParameterChanged());