5 references to CommandParameter
Microsoft.Maui.Controls (5)
Cells\TextCell.cs (5)
25
textCell.IsEnabled = newcommand.CanExecute(textCell.
CommandParameter
);
30
/// <summary>Bindable property for <see cref="
CommandParameter
"/>.</summary>
31
public static readonly BindableProperty CommandParameterProperty = BindableProperty.Create(nameof(
CommandParameter
), typeof(object), typeof(TextCell), default(object),
104
Command?.Execute(
CommandParameter
);
109
IsEnabled = Command.CanExecute(
CommandParameter
);