Class RoutedEventArgs
Routed Event arguments class
Inheritance
System.Object
RoutedEventArgs
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
Assembly: EmptyKeys.UserInterface.dll
Syntax
public class RoutedEventArgs
Constructors
RoutedEventArgs()
Initializes a new instance of the RoutedEventArgs class.
Declaration
public RoutedEventArgs()
RoutedEventArgs(RoutedEvent)
Initializes a new instance of the RoutedEventArgs class.
Declaration
public RoutedEventArgs(RoutedEvent routedEvent)
Parameters
Type | Name | Description |
---|---|---|
RoutedEvent | routedEvent | The routed event. |
RoutedEventArgs(RoutedEvent, Object)
Initializes a new instance of the RoutedEventArgs class.
Declaration
public RoutedEventArgs(RoutedEvent routedEvent, object source)
Parameters
Type | Name | Description |
---|---|---|
RoutedEvent | routedEvent | The routed event. |
System.Object | source | The source. |
Properties
Handled
Gets or sets a value indicating whether this RoutedEventArgs is handled.
Declaration
public bool Handled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
RoutedEvent
Gets or sets the routed event.
Declaration
public RoutedEvent RoutedEvent { get; set; }
Property Value
Type | Description |
---|---|
RoutedEvent | The routed event. |
Source
Gets or sets the source.
Declaration
public object Source { get; set; }
Property Value
Type | Description |
---|---|
System.Object | The source. |
Methods
InvokeEventHandler(Delegate, Object)
Invokes the event handler.
Declaration
protected virtual void InvokeEventHandler(Delegate handler, object target)
Parameters
Type | Name | Description |
---|---|---|
System.Delegate | handler | The handler. |
System.Object | target | The target. |