6 references to Command
Microsoft.Maui.Controls (6)
Cells\TextCell.cs (6)
11
/// <summary>Bindable property for <see cref="
Command
"/>.</summary>
12
public static readonly BindableProperty CommandProperty = BindableProperty.Create(nameof(
Command
), typeof(ICommand), typeof(TextCell), default(ICommand),
35
if (textCell.
Command
!= null)
37
textCell.IsEnabled = textCell.
Command
.CanExecute(newvalue);
104
Command
?.Execute(CommandParameter);
109
IsEnabled =
Command
.CanExecute(CommandParameter);