1 instantiation of SwipeEndedEventArgs
Microsoft.Maui.Controls (1)
SwipeView\SwipeView.cs (1)
381
var swipeEndedEventArgs = new
SwipeEndedEventArgs
(swipeEnded.SwipeDirection, swipeEnded.IsOpen);
4 references to SwipeEndedEventArgs
Microsoft.Maui.Controls (4)
ISwipeViewController.cs (1)
9
void SendSwipeEnded(
SwipeEndedEventArgs
args);
SwipeView\SwipeView.cs (3)
182
public event EventHandler<
SwipeEndedEventArgs
> SwipeEnded;
210
void ISwipeViewController.SendSwipeEnded(
SwipeEndedEventArgs
args) => SwipeEnded?.Invoke(this, args);
381
var
swipeEndedEventArgs = new SwipeEndedEventArgs(swipeEnded.SwipeDirection, swipeEnded.IsOpen);