Class RoutedUICommand
Defines an ICommand that is routed through the element tree and contains a text property.
Inherited Members
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.dll
Syntax
public class RoutedUICommand : RoutedCommand, ICommand
Constructors
RoutedUICommand()
RoutedUICommand(String, String, Type)
Initializes a new instance of the RoutedUICommand class.
Declaration
public RoutedUICommand(string text, string name, Type ownerType)
Parameters
System.String
text
The text. |
System.String
name
The name. |
System.Type
ownerType
Type of the owner. |
RoutedUICommand(String, String, Type, InputGestureCollection)
Initializes a new instance of the RoutedUICommand class.
Declaration
public RoutedUICommand(string text, string name, Type ownerType, InputGestureCollection inputGestures)
Parameters
System.String
text
The text. |
System.String
name
The name. |
System.Type
ownerType
Type of the owner. |
InputGestureCollection
inputGestures
The input gestures. |
Properties
Text
Gets or sets the text that describes this command.
Declaration
public string Text { get; set; }
Property Value
System.String
The text. |