Class ExecutedRoutedEventArgs
Arguments for Execute Routed event
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: EmptyKeys.UserInterface.Input
Assembly: EmptyKeys.UserInterface.dll
Syntax
public class ExecutedRoutedEventArgs : RoutedEventArgs
Constructors
ExecutedRoutedEventArgs(ICommand, Object, RoutedEvent)
Initializes a new instance of the ExecutedRoutedEventArgs class.
Declaration
public ExecutedRoutedEventArgs(ICommand command, object parameter, RoutedEvent routedEvent)
Parameters
Type | Name | Description |
---|---|---|
ICommand | command | The command. |
System.Object | parameter | The parameter. |
RoutedEvent | routedEvent | The routed event. |
Properties
Command
Gets the command.
Declaration
public ICommand Command { get; }
Property Value
Type | Description |
---|---|
ICommand | The command. |
Parameter
Gets the parameter.
Declaration
public object Parameter { get; }
Property Value
Type | Description |
---|---|
System.Object | The parameter. |
Methods
InvokeEventHandler(Delegate, Object)
Invokes the event handler.
Declaration
protected override void InvokeEventHandler(Delegate handler, object target)
Parameters
Type | Name | Description |
---|---|---|
System.Delegate | handler | The handler. |
System.Object | target | The target. |