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:
C#
public class ComboBoxClearSelectionCommand : ComboBoxCommand, INotifyPropertyChanged, ICommand
Inheritance: objectNotifyPropertyChangedBaseComboBoxCommandComboBoxClearSelectionCommand
Implements:
Inherited Members
Constructors
C#
public ComboBoxClearSelectionCommand()
Methods
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.
Executes the command with the specified parameter. Override this method to implement the command's behavior and logic.
C#
public override void Execute(object parameter)
The parameter passed to the command.
Overrides: