ObjectItemRoutedEventArgs Class
Provides event arguments for a object-related routed event.
public class ObjectItemRoutedEventArgs : ItemRoutedEventArgs<object>
- Inheritance:
- object EventArgs RoutedEventArgs ItemRoutedEventArgs<object> object
Constructors
ObjectItemRoutedEventArgs(object)
Initializes a new instance of the ObjectItemRoutedEventArgs
class.
public ObjectItemRoutedEventArgs(object item)
Parameter | Type | Description |
---|---|---|
item | object | The item that is the focus of this event. |
ObjectItemRoutedEventArgs(object, RoutedEvent)
Initializes a new instance of the ObjectItemRoutedEventArgs
class.
public ObjectItemRoutedEventArgs(object item, RoutedEvent routedEvent)
Parameter | Type | Description |
---|---|---|
item | object | The item that is the focus of this event. |
routedEvent | RoutedEvent | The routed event identifier for this event arguments instance. |
ObjectItemRoutedEventArgs(object, RoutedEvent, object)
Initializes a new instance of the ObjectItemRoutedEventArgs
class.
public ObjectItemRoutedEventArgs(object item, RoutedEvent routedEvent, object source)
Parameter | Type | Description |
---|---|---|
item | object | The item that is the focus of this event. |
routedEvent | RoutedEvent | The routed event identifier for this event arguments instance. |
source | object | An alternate source that will be reported when the event is handled. |