ClassDataGridUserCommand
Represents a predefined command that aggregates a custom ICommand implementation, which may be used to perform additional action over the default implementation.
Definition
Namespace:Telerik.UI.Xaml.Controls.Grid.Commands
Assembly:Telerik.WinUI.Controls.dll
Syntax:
public sealed class DataGridUserCommand : DataGridCommand, ICommand
Inheritance: objectRadDependencyObjectAttachableObject<RadDataGrid>ControlCommandBase<RadDataGrid>DataGridCommandDataGridUserCommand
Implements:
Inherited Members
Constructors
DataGridUserCommand()
Declaration
public DataGridUserCommand()
Fields
CommandProperty
Identifies the Command dependency property.
Declaration
public static readonly DependencyProperty CommandProperty
Field Value
DependencyProperty
EnableDefaultCommandProperty
Identifies the EnableDefaultCommand dependency property.
Declaration
public static readonly DependencyProperty EnableDefaultCommandProperty
Field Value
DependencyProperty
Properties
Command
Gets or sets the ICommand implementation that is used to perform the custom logic associated with this command.
EnableDefaultCommand
Gets or sets a value indicating whether the default command implementation, related to the current Id, should be executed. True by default.
Methods
CanExecute(object)
Determines whether the command can be executed against the provided parameter.
Execute(object)
Performs the core action given the provided parameter.
Declaration
public override void Execute(object parameter)
Parameters
parameter
Overrides