ClassComboBoxClearSelectionCommand
Class
Represents the command that is executed when the user taps on the clear button.
Definition
Namespace:Telerik.Maui.Controls.ComboBox
Assembly:Telerik.Maui.Controls.dll
Syntax:
cs-api-definition
public class ComboBoxClearSelectionCommand : ComboBoxCommand, INotifyPropertyChanged, ICommand
Inheritance: objectNotifyPropertyChangedBaseComboBoxCommandComboBoxClearSelectionCommand
Implements:
Inherited Members
Constructors
ComboBoxClearSelectionCommand()
Declaration
cs-api-definition
public ComboBoxClearSelectionCommand()
Methods
CanExecute(object)
Determines whether the command can execute with the specified parameter in its current state. Override this method to implement custom logic for determining command availability.
Execute(object)
Executes the command with the specified parameter. Override this method to implement the command's behavior and logic.
Declaration
cs-api-definition
public override void Execute(object parameter)
Parameters
parameter
The parameter passed to the command.
Overrides