Implemented interface member:
property
CommandParameter
Microsoft.Maui.Controls.ISwipeItem.CommandParameter
7 references to CommandParameter
Microsoft.Maui.Controls (7)
SwipeView\SwipeItemView.cs (7)
17
/// <summary>Bindable property for <see cref="
CommandParameter
"/>.</summary>
18
public static readonly BindableProperty CommandParameterProperty = BindableProperty.Create(nameof(
CommandParameter
), typeof(object), typeof(SwipeItemView), null,
41
if (Command != null && Command.CanExecute(
CommandParameter
))
42
Command.Execute(
CommandParameter
);
49
IsEnabled = Command?.CanExecute(
CommandParameter
) ?? true;
70
IsEnabled = Command.CanExecute(
CommandParameter
);
75
IsEnabled = Command.CanExecute(
CommandParameter
);