Provides command execution services for RadSideDrawer controls. This class extends CommandServiceBase<T> to handle side drawer-specific commands.
Definition
Namespace:Telerik.Maui.Controls
Assembly:Telerik.Maui.Controls.dll
Syntax:
public class SideDrawerCommandService : CommandServiceBase<RadSideDrawer>
Inheritance: objectCommandServiceBase<RadSideDrawer>SideDrawerCommandService
Inherited Members
Methods
Determines whether the default command associated with the specified command ID can be executed.
public bool CanExecuteDefaultCommand(SideDrawerCommandId id, object parameter)
The SideDrawerCommandId that identifies the command to check.
parameterobjectThe parameter to pass to the command's CanExecute method.
Returns:true if the default command can be executed; otherwise, false.
Executes the command associated with the specified command ID.
public bool ExecuteCommand(SideDrawerCommandId id, object parameter)
The SideDrawerCommandId that identifies the command to execute.
parameterobjectThe parameter to pass to the command.
Returns:true if the command was executed successfully; otherwise, false.
Executes the default command associated with the specified command ID.
public bool ExecuteDefaultCommand(SideDrawerCommandId id, object parameter)
The SideDrawerCommandId that identifies the default command to execute.
parameterobjectThe parameter to pass to the command.
Returns:true if the default command was executed successfully; otherwise, false.