ClassSideDrawerUserCommand
Represents a user-defined command for a side drawer that can execute custom logic. This sealed class extends SideDrawerCommandBase to provide command execution capabilities.
Definition
Namespace:Telerik.Maui.Controls
Assembly:Telerik.Maui.Controls.dll
Syntax:
public sealed class SideDrawerUserCommand : SideDrawerCommandBase, ICommand
Inheritance: objectAttachableObject<RadSideDrawer>ControlCommandBase<RadSideDrawer>SideDrawerCommandBaseSideDrawerUserCommand
Implements:
Inherited Members
Constructors
SideDrawerUserCommand()
Declaration
public SideDrawerUserCommand()
Fields
CommandProperty
Identifies the Command bindable property.
Declaration
public static readonly BindableProperty CommandProperty
Field Value
BindableProperty
Properties
Methods
CanExecute(object)
Determines whether the command can execute with the specified parameter. Checks both the cached command and the owner's default command execution capability.
Execute(object)
Executes the command with the specified parameter. First executes the owner's default command, then executes the cached command if available.
Declaration
public override void Execute(object parameter)
Parameters
parameter
The parameter to pass to the command.
Overrides