6 references to Mode
Microsoft.Maui.Controls (3)
SwipeView\SwipeItems.cs (2)
37
/// <summary>Bindable property for <see cref="
Mode
"/>.</summary>
38
public static readonly BindableProperty ModeProperty = BindableProperty.Create(nameof(
Mode
), typeof(SwipeMode), typeof(SwipeItems), SwipeMode.Reveal);
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);