1 implementation of ISwipeViewController
Microsoft.Maui.Controls (1)
SwipeView\SwipeView.cs (1)
12 public partial class SwipeView : ContentView, IElementConfiguration<SwipeView>, ISwipeViewController, ISwipeView, IVisualTreeElement
11 references to ISwipeViewController
Microsoft.Maui.Controls (7)
SwipeView\SwipeView.cs (7)
93 bool ISwipeViewController.IsOpen 206 void ISwipeViewController.SendSwipeStarted(SwipeStartedEventArgs args) => SwipeStarted?.Invoke(this, args); 208 void ISwipeViewController.SendSwipeChanging(SwipeChangingEventArgs args) => SwipeChanging?.Invoke(this, args); 210 void ISwipeViewController.SendSwipeEnded(SwipeEndedEventArgs args) => SwipeEnded?.Invoke(this, args); 369 ((ISwipeViewController)this).SendSwipeStarted(swipeStartedEventArgs); 375 ((ISwipeViewController)this).SendSwipeChanging(swipeChangingEventArgs); 382 ((ISwipeViewController)this).SendSwipeEnded(swipeEndedEventArgs);
Microsoft.Maui.Controls.Compatibility (4)
iOS\Renderers\SwipeViewRenderer.cs (4)
1503 ((ISwipeViewController)Element).IsOpen = isOpen; 1609 ((ISwipeViewController)Element).SendSwipeStarted(swipeStartedEventArgs); 1618 ((ISwipeViewController)Element).SendSwipeChanging(swipeChangingEventArgs); 1634 ((ISwipeViewController)Element).SendSwipeEnded(swipeEndedEventArgs);