25 references to SwipeView
Microsoft.Maui.Controls (25)
Hosting\AppHostBuilderExtensions.cs (2)
109
handlersCollection.AddHandler<
SwipeView
, SwipeViewHandler>();
251
SwipeView
.RemapForControls();
PlatformConfiguration\AndroidSpecific\SwipeView.cs (4)
4
using FormsElement = Maui.Controls.
SwipeView
;
25
public static SwipeTransitionMode GetSwipeTransitionMode(this IPlatformElementConfiguration<Android,
FormsElement
> config)
31
public static IPlatformElementConfiguration<Android,
FormsElement
> SetSwipeTransitionMode(this IPlatformElementConfiguration<Android,
FormsElement
> config, SwipeTransitionMode value)
PlatformConfiguration\iOSSpecific\SwipeView.cs (4)
4
using FormsElement = Maui.Controls.
SwipeView
;
25
public static SwipeTransitionMode GetSwipeTransitionMode(this IPlatformElementConfiguration<iOS,
FormsElement
> config)
31
public static IPlatformElementConfiguration<iOS,
FormsElement
> SetSwipeTransitionMode(this IPlatformElementConfiguration<iOS,
FormsElement
> config, SwipeTransitionMode value)
SwipeView\SwipeView.cs (13)
12
public partial class SwipeView : ContentView, IElementConfiguration<
SwipeView
>, ISwipeViewController, ISwipeView, IVisualTreeElement
14
readonly Lazy<PlatformConfigurationRegistry<
SwipeView
>> _platformConfigurationRegistry;
21
_platformConfigurationRegistry = new Lazy<PlatformConfigurationRegistry<
SwipeView
>>(() => new PlatformConfigurationRegistry<
SwipeView
>(this));
36
BindableProperty.Create(nameof(Threshold), typeof(double), typeof(
SwipeView
), default(double));
40
BindableProperty.Create(nameof(LeftItems), typeof(SwipeItems), typeof(
SwipeView
), null, BindingMode.OneWay, null, defaultValueCreator: SwipeItemsDefaultValueCreator,
45
BindableProperty.Create(nameof(RightItems), typeof(SwipeItems), typeof(
SwipeView
), null, BindingMode.OneWay, null, defaultValueCreator: SwipeItemsDefaultValueCreator,
50
BindableProperty.Create(nameof(TopItems), typeof(SwipeItems), typeof(
SwipeView
), null, BindingMode.OneWay, null, defaultValueCreator: SwipeItemsDefaultValueCreator,
55
BindableProperty.Create(nameof(BottomItems), typeof(SwipeItems), typeof(
SwipeView
), null, BindingMode.OneWay, null, defaultValueCreator: SwipeItemsDefaultValueCreator,
135
if (bindable is not
SwipeView
swipeView)
216
var
swipeView = ((
SwipeView
)bindable);
221
public IPlatformElementConfiguration<T,
SwipeView
> On<T>() where T : IConfigPlatform
SwipeView\SwipeView.Mapper.cs (2)
11
SwipeViewHandler.Mapper.AppendToMapping<
SwipeView
, ISwipeViewHandler>(nameof(Background), MapBackground);
14
static void MapBackground(ISwipeViewHandler handler,
SwipeView
swipeView)