5 implementations of Command
Microsoft.Maui.Controls (5)
Button\Button.cs (1)
189 public ICommand Command
ImageButton\ImageButton.cs (1)
109 public ICommand Command
Menu\MenuItem.cs (1)
63 public ICommand Command
RefreshView\RefreshView.cs (1)
115 ICommand ICommandElement.Command => Command;
SearchBar\SearchBar.cs (1)
115 ICommand ICommandElement.Command => SearchCommand;
6 references to Command
Microsoft.Maui.Controls (6)
Button\ButtonElement.cs (4)
11 /// The backing store for the <see cref="ICommandElement.Command" /> bindable property. 14 nameof(IButtonElement.Command), typeof(ICommand), typeof(IButtonElement), null, 31 /// By calling this, the <see cref="ICommandElement.Command"/> and clicked events are triggered. 39 ButtonElementManager.Command?.Execute(ButtonElementManager.CommandParameter);
CommandElement.cs (2)
33 if (commandElement.Command == null) 36 return commandElement.Command.CanExecute(commandElement.CommandParameter);