9 references to SwipeMode
Microsoft.Maui (1)
Core\ISwipeItems.cs (1)
13
public
SwipeMode
Mode { get; }
Microsoft.Maui.Controls (5)
SwipeView\SwipeItems.cs (4)
38
public static readonly BindableProperty ModeProperty = BindableProperty.Create(nameof(Mode), typeof(
SwipeMode
), typeof(SwipeItems),
SwipeMode
.Reveal);
43
public
SwipeMode
Mode
45
get { return (
SwipeMode
)GetValue(ModeProperty); }
SwipeView\SwipeView.cs (1)
423
public
SwipeMode
Mode => _swipeItems.Mode;
Microsoft.Maui.Controls.Compatibility (3)
iOS\Renderers\SwipeViewRenderer.cs (3)
1100
if (swipeItems.Mode ==
SwipeMode
.Execute)
1219
if (swipeItems.Mode ==
SwipeMode
.Reveal)
1312
return new Size(items.Mode ==
SwipeMode
.Execute ? (threshold > 0 ? threshold : contentWidth) / items.Count : (threshold < SwipeItemWidth ? SwipeItemWidth : threshold), contentHeight);