Class RoutedCommand
Inheritance
System.Object
RoutedCommand
Namespace: Telerik.UI.Xaml.Controls
Assembly: Telerik.WinUI.Controls.dll
Syntax
public class RoutedCommand : Object, ICommand
Constructors
RoutedCommand()
Declaration
protected RoutedCommand()
RoutedCommand(String, Type)
Declaration
public RoutedCommand(string name, Type ownerType)
Parameters
|
System.String
name
|
|
System.Type
ownerType
|
RoutedCommand(String, Type, InputGestureCollection)
Declaration
public RoutedCommand(string name, Type ownerType, InputGestureCollection inputGestures)
Parameters
|
System.String
name
|
|
System.Type
ownerType
|
|
InputGestureCollection
inputGestures
|
Properties
InputGestures
Declaration
public InputGestureCollection InputGestures { get; }
Property Value
|
InputGestureCollection
|
Name
Declaration
public string Name { get; set; }
Property Value
|
System.String
|
OwnerType
Declaration
public Type OwnerType { get; }
Property Value
|
System.Type
|
Methods
CanExecute(Object, UIElement)
Declaration
public bool CanExecute(object parameter, UIElement target)
Parameters
|
System.Object
parameter
|
|
Microsoft.UI.Xaml.UIElement
target
|
Returns
|
System.Boolean
|
Execute(Object, UIElement)
Declaration
public void Execute(object parameter, UIElement target)
Parameters
|
System.Object
parameter
|
|
Microsoft.UI.Xaml.UIElement
target
|
Events
CanExecuteChanged
Declaration
public event EventHandler CanExecuteChanged
Event Type
|
System.EventHandler
|