Interface ICommandSource
Defines an object that knows how to invoke a command.
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.dll
Syntax
public interface ICommandSource
Properties
Command
Gets the command that will be executed when the command source is invoked.
Declaration
ICommand Command { get; }
Property Value
System.Windows.Input.ICommand
|
CommandParameter
Represents a user defined data value that can be passed to the command when it is executed.
Declaration
object CommandParameter { get; }
Property Value
System.Object
|
CommandTarget
The object that the command is being executed on.
Declaration
UIElement CommandTarget { get; }
Property Value
System.Windows.UIElement
|