Class SideDrawerCommandService
Provides command execution services for RadSideDrawer controls. This class extends CommandServiceBase<T> to handle side drawer-specific commands.
Inherited Members
Namespace: Telerik.Maui.Controls
Assembly: Telerik.Maui.Controls.dll
Syntax
public class SideDrawerCommandService : CommandServiceBase<RadSideDrawer>
Methods
CanExecuteDefaultCommand(SideDrawerCommandId, Object)
Determines whether the default command associated with the specified command ID can be executed.
Declaration
public bool CanExecuteDefaultCommand(SideDrawerCommandId id, object parameter)
Parameters
SideDrawerCommandId
id
The SideDrawerCommandId that identifies the command to check. |
System.Object
parameter
The parameter to pass to the command's CanExecute method. |
Returns
System.Boolean
|
ExecuteCommand(SideDrawerCommandId, Object)
Executes the command associated with the specified command ID.
Declaration
public bool ExecuteCommand(SideDrawerCommandId id, object parameter)
Parameters
SideDrawerCommandId
id
The SideDrawerCommandId that identifies the command to execute. |
System.Object
parameter
The parameter to pass to the command. |
Returns
System.Boolean
|
ExecuteDefaultCommand(SideDrawerCommandId, Object)
Executes the default command associated with the specified command ID.
Declaration
public bool ExecuteDefaultCommand(SideDrawerCommandId id, object parameter)
Parameters
SideDrawerCommandId
id
The SideDrawerCommandId that identifies the default command to execute. |
System.Object
parameter
The parameter to pass to the command. |
Returns
System.Boolean
|