3 writes to IsEnabled
Microsoft.Maui.Controls (3)
Cells\TextCell.cs (3)
25
textCell.
IsEnabled
= newcommand.CanExecute(textCell.CommandParameter);
37
textCell.
IsEnabled
= textCell.Command.CanExecute(newvalue);
109
IsEnabled
= Command.CanExecute(CommandParameter);
4 references to IsEnabled
Microsoft.Maui.Controls (4)
Cells\Cell.cs (3)
18
/// <summary>Bindable property for <see cref="
IsEnabled
"/>.</summary>
19
public static readonly BindableProperty IsEnabledProperty = BindableProperty.Create(nameof(
IsEnabled
), typeof(bool), typeof(Cell), true, propertyChanged: OnIsEnabledPropertyChanged);
104
get { return _contextActions != null && _contextActions.Count > 0 &&
IsEnabled
; }
Cells\TextCell.cs (1)
99
if (!
IsEnabled
)