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
public SideDrawerUserCommand()
Fields
CommandProperty
BindableProperty
Identifies the Command bindable property.
public static readonly BindableProperty CommandProperty
Properties
Methods
Determines whether the command can execute with the specified parameter. Checks both the cached command and the owner's default command execution capability.
Executes the command with the specified parameter. First executes the owner's default command, then executes the cached command if available.
public override void Execute(object parameter)
The parameter to pass to the command.
Overrides: