5 references to CommandParameter
Microsoft.Maui.Controls (5)
SwipeGestureRecognizer.cs (5)
18
/// <summary>Bindable property for <see cref="
CommandParameter
"/>.</summary>
19
public static readonly BindableProperty CommandParameterProperty = BindableProperty.Create(nameof(
CommandParameter
), typeof(object), typeof(SwipeGestureRecognizer), null);
118
if (cmd != null && cmd.CanExecute(
CommandParameter
))
119
cmd.Execute(
CommandParameter
);
121
Swiped?.Invoke(sender, new SwipedEventArgs(
CommandParameter
, direction));