1 instantiation of SwipeChangingEventArgs
Microsoft.Maui.Controls (1)
SwipeView\SwipeView.cs (1)
374
var swipeChangingEventArgs = new
SwipeChangingEventArgs
(swipeChanging.SwipeDirection, swipeChanging.Offset);
4 references to SwipeChangingEventArgs
Microsoft.Maui.Controls (4)
ISwipeViewController.cs (1)
8
void SendSwipeChanging(
SwipeChangingEventArgs
args);
SwipeView\SwipeView.cs (3)
181
public event EventHandler<
SwipeChangingEventArgs
> SwipeChanging;
208
void ISwipeViewController.SendSwipeChanging(
SwipeChangingEventArgs
args) => SwipeChanging?.Invoke(this, args);
374
var
swipeChangingEventArgs = new SwipeChangingEventArgs(swipeChanging.SwipeDirection, swipeChanging.Offset);