Class ComboBoxCommand
Abstract class that defines the common API for all commands that can be executed by a RadComboBox instance.
Inherited Members
Namespace: Telerik.Maui.Controls.ComboBox
Assembly: Telerik.Maui.Controls.dll
Syntax
public abstract class ComboBoxCommand : NotifyPropertyChangedBase, INotifyPropertyChanged, ICommand
Constructors
ComboBoxCommand()
Declaration
protected ComboBoxCommand()
Properties
ComboBox
Gets the RadComboBox instance associated with this command.
Declaration
public RadComboBox ComboBox { get; }
Property Value
RadComboBox
|
Methods
CanExecute(Object)
Determines whether the command can execute in its current state.
Declaration
public abstract bool CanExecute(object parameter)
Parameters
System.Object
parameter
|
Returns
System.Boolean
|
Execute(Object)
Defines the method to be called when the command is invoked.
Declaration
public abstract void Execute(object parameter)
Parameters
System.Object
parameter
|
RaiseCanExecuteChanged()
Events
CanExecuteChanged
Occurs when the ability of the command to execute has changed.
Declaration
public event EventHandler CanExecuteChanged
Event Type
System.EventHandler
|